diff options
Diffstat (limited to 'Pipes/Text.hs')
-rw-r--r-- | Pipes/Text.hs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Pipes/Text.hs b/Pipes/Text.hs index b90948f..575c987 100644 --- a/Pipes/Text.hs +++ b/Pipes/Text.hs | |||
@@ -290,7 +290,7 @@ unpack = for cat (\t -> yield (T.unpack t)) | |||
290 | 290 | ||
291 | -- | @toCaseFold@, @toLower@, @toUpper@ and @stripStart@ are standard 'Text' utilities, | 291 | -- | @toCaseFold@, @toLower@, @toUpper@ and @stripStart@ are standard 'Text' utilities, |
292 | -- here acting as 'Text' pipes, rather as they would on a lazy text | 292 | -- here acting as 'Text' pipes, rather as they would on a lazy text |
293 | toCaseFold :: Monad m => Pipe Text Text m () | 293 | toCaseFold :: Monad m => Pipe Text Text m r |
294 | toCaseFold = P.map T.toCaseFold | 294 | toCaseFold = P.map T.toCaseFold |
295 | {-# INLINEABLE toCaseFold #-} | 295 | {-# INLINEABLE toCaseFold #-} |
296 | 296 | ||
@@ -300,7 +300,7 @@ toCaseFold = P.map T.toCaseFold | |||
300 | 300 | ||
301 | 301 | ||
302 | -- | lowercase incoming 'Text' | 302 | -- | lowercase incoming 'Text' |
303 | toLower :: Monad m => Pipe Text Text m () | 303 | toLower :: Monad m => Pipe Text Text m r |
304 | toLower = P.map T.toLower | 304 | toLower = P.map T.toLower |
305 | {-# INLINEABLE toLower #-} | 305 | {-# INLINEABLE toLower #-} |
306 | 306 | ||