diff --git a/src/GenericParser/EmailAddress.purs b/src/GenericParser/EmailAddress.purs index c735796..882162e 100644 --- a/src/GenericParser/EmailAddress.purs +++ b/src/GenericParser/EmailAddress.purs @@ -1,9 +1,8 @@ --- | `EmailAddress` is a parser for email addresses, implementing the grammar found in RFC5322. +-- | `EmailAddress` is a simplistic parser for email addresses. +-- | For a more serious parser, see the `RFC5322` module. -- | --- | STATUS: the parser mostly works, except for comments. --- | Comments provoke a stack overflow, this must be investigated. --- | --- | Also, the parser needs a thorough review. +-- | STATUS: the parser works for very simplistic email addresses. +-- | This shouldn't be used in a serious environment. module GenericParser.EmailAddress where import Prelude (bind, pure, ($), (<>))