diff options
Diffstat (limited to 'Pipes/Text')
-rw-r--r-- | Pipes/Text/Parse.hs | 4 |
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 | ||
3 | module Pipes.Text.Parse ( | 3 | module 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 | -} |
29 | nextChar | 29 | nextChar |