diff --git a/io-streams.cabal b/io-streams.cabal
--- a/io-streams.cabal
+++ b/io-streams.cabal
@@ -1,5 +1,5 @@
 Name:                io-streams
-Version:             1.0.0.0
+Version:             1.0.0.1
 License:             BSD3
 License-file:        LICENSE
 Category:            Data, Network, IO-Streams
@@ -52,11 +52,11 @@
   @
   ghci> input \<- Streams.fromByteString \"long string\"
   ghci> wrapped \<- Streams.takeBytes 4 input
-  ghci> read wrapped
+  ghci> Streams.read wrapped
   Just \"long\"
-  ghci> read wrapped
+  ghci> Streams.read wrapped
   Nothing
-  ghci> read input
+  ghci> Streams.read input
   Just \" string\"
   @
   .
