aboutsummaryrefslogtreecommitdiffhomepage
path: root/Pipes/Text.hs
diff options
context:
space:
mode:
Diffstat (limited to 'Pipes/Text.hs')
-rw-r--r--Pipes/Text.hs4
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
293toCaseFold :: Monad m => Pipe Text Text m () 293toCaseFold :: Monad m => Pipe Text Text m r
294toCaseFold = P.map T.toCaseFold 294toCaseFold = 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'
303toLower :: Monad m => Pipe Text Text m () 303toLower :: Monad m => Pipe Text Text m r
304toLower = P.map T.toLower 304toLower = P.map T.toLower
305{-# INLINEABLE toLower #-} 305{-# INLINEABLE toLower #-}
306 306