]> git.immae.eu Git - github/fretlink/text-pipes.git/blobdiff - Pipes/Text.hs
Replaced the word "proxies" with "pipes"
[github/fretlink/text-pipes.git] / Pipes / Text.hs
index c0c0946c88369b3f84095e0387aab6c7e7bb4764..f85f0ee5ad35bb71fb667caefd107503b826f228 100644 (file)
@@ -29,11 +29,11 @@ To stream from files, the following is perhaps more Prelude-like (note that it u
 > main = runSafeT $ runEffect $ Text.readFile "inFile.txt" >-> Text.writeFile "outFile.txt"
 
     You can stream to and from 'stdin' and 'stdout' using the predefined 'stdin'
-    and 'stdout' proxies, as with the following \"echo\" program:
+    and 'stdout' pipes, as with the following \"echo\" program:
 
 > main = runEffect $ Text.stdin >-> Text.stdout
 
-    You can also translate pure lazy 'TL.Text's to and from proxies:
+    You can also translate pure lazy 'TL.Text's to and from pipes:
 
 > main = runEffect $ Text.fromLazy (TL.pack "Hello, world!\n") >-> Text.stdout
 
@@ -1159,4 +1159,4 @@ decodeIso8859_1 = go where
 
 
 
-                                            
\ No newline at end of file
+