diff options
Diffstat (limited to 'Pipes/Text/Encoding.hs')
-rw-r--r-- | Pipes/Text/Encoding.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Pipes/Text/Encoding.hs b/Pipes/Text/Encoding.hs index a1a0113..e6fc6bf 100644 --- a/Pipes/Text/Encoding.hs +++ b/Pipes/Text/Encoding.hs | |||
@@ -189,7 +189,7 @@ mkCodec dec enc = \k p0 -> fmap (\p -> join (for p (yield . enc))) (k (dec p0)) | |||
189 | > decode utf8 Byte.stdin :: Producer Text IO (Producer ByteString IO r) | 189 | > decode utf8 Byte.stdin :: Producer Text IO (Producer ByteString IO r) |
190 | > Bytes.stdin ^. utf8 :: Producer Text IO (Producer ByteString IO r) | 190 | > Bytes.stdin ^. utf8 :: Producer Text IO (Producer ByteString IO r) |
191 | 191 | ||
192 | Uses of a codec with @view@ / @(^.)@ / 'decode' can always be replaced by the specialized | 192 | Uses of a codec with @view@ or @(^.)@ or 'decode' can always be replaced by the specialized |
193 | decoding functions exported here, e.g. | 193 | decoding functions exported here, e.g. |
194 | 194 | ||
195 | > decodeUtf8 :: Producer ByteString m r -> Producer Text m (Producer ByteString m r) | 195 | > decodeUtf8 :: Producer ByteString m r -> Producer Text m (Producer ByteString m r) |