Fix comments related to RFC5322.

This commit is contained in:
Philippe Pittoli 2024-02-10 16:04:35 +01:00
parent 67e318b949
commit 49eb615b79

View File

@ -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. -- | STATUS: the parser works for very simplistic email addresses.
-- | Comments provoke a stack overflow, this must be investigated. -- | This shouldn't be used in a serious environment.
-- |
-- | Also, the parser needs a thorough review.
module GenericParser.EmailAddress where module GenericParser.EmailAddress where
import Prelude (bind, pure, ($), (<>)) import Prelude (bind, pure, ($), (<>))