aboutsummaryrefslogtreecommitdiffhomepage
path: root/Pipes/Text
diff options
context:
space:
mode:
authormichaelt <what_is_it_to_do_anything@yahoo.com>2013-10-22 20:08:00 -0400
committermichaelt <what_is_it_to_do_anything@yahoo.com>2013-10-22 20:08:00 -0400
commit62e8521c6aff3480716ddb5d74edc7f00a1971ea (patch)
treeab679279bef564403dbb47adca7c664a4382c965 /Pipes/Text
parent41f8c964077f382a28abd72d96c89dbea91b194f (diff)
downloadtext-pipes-62e8521c6aff3480716ddb5d74edc7f00a1971ea.tar.gz
text-pipes-62e8521c6aff3480716ddb5d74edc7f00a1971ea.tar.zst
text-pipes-62e8521c6aff3480716ddb5d74edc7f00a1971ea.zip
haddock repairs
Diffstat (limited to 'Pipes/Text')
-rw-r--r--Pipes/Text/Parse.hs4
1 files changed, 2 insertions, 2 deletions
diff --git a/Pipes/Text/Parse.hs b/Pipes/Text/Parse.hs
index 8c3a13e..ed0afa1 100644
--- a/Pipes/Text/Parse.hs
+++ b/Pipes/Text/Parse.hs
@@ -1,4 +1,4 @@
1-- | Parsing utilities for characterstrings, in the style of @pipes-parse@ 1-- | Parsing utilities for texts, in the style of @pipes-parse@ and @Pipes.ByteString.Parse@
2 2
3module Pipes.Text.Parse ( 3module Pipes.Text.Parse (
4 -- * Parsers 4 -- * Parsers
@@ -23,7 +23,7 @@ import Prelude hiding (take, takeWhile)
23{-| Consume the first character from a 'Text' stream 23{-| Consume the first character from a 'Text' stream
24 24
25 'next' either fails with a 'Left' if the 'Producer' has no more characters or 25 'next' either fails with a 'Left' if the 'Producer' has no more characters or
26 succeeds with a 'Right' providing the next byte and the remainder of the 26 succeeds with a 'Right' providing the next character and the remainder of the
27 'Producer'. 27 'Producer'.
28-} 28-}
29nextChar 29nextChar