diff --git a/pipe-enumerator.cabal b/pipe-enumerator.cabal
--- a/pipe-enumerator.cabal
+++ b/pipe-enumerator.cabal
@@ -1,5 +1,5 @@
 name:           pipe-enumerator
-version:        0.3.0.0
+version:        0.3.0.1
 synopsis:       A bidirectional bridge between pipes and iteratees
 homepage:       https://github.com/zadarnowski/pipe-enumerator
 category:       Control, Pipes
@@ -15,11 +15,12 @@
     This library defines a set of functions that convert between
     the "Pipes" and "Data.Enumerator" paradigms. The conversion
     is bidirectional: an appropriately-typed pipe can be converted
-    into an 'E.Iteratee' and back into a pipe. In addition, a pipe
-    can be fed into an iteratee (or, more specifically, 'E.Step'),
-    resulting in an 'E.Enumerator'.
+    into an 'Data.Enumerator.Iteratee' and back into a pipe.
+    In addition, a pipe can be fed into an iteratee
+    (or, more specifically, 'Data.Enumerator.Step'),
+    resulting in an 'Data.Enumerator.Enumerator'.
 
-    The library has been designed specifically for use with "Snap",
+    The library has been designed specifically for use with Snap,
     but I'm sure that many other interesting uses of it exist.
 
 cabal-version:  >= 1.18
@@ -34,7 +35,7 @@
 source-repository this
   type:         git
   location:     https://github.com/zadarnowski/pipe-enumerator.git
-  tag:          0.3.0.0
+  tag:          0.3.0.1
 
 library
   hs-source-dirs:   src
diff --git a/src/Pipes/Enumerator.lhs b/src/Pipes/Enumerator.lhs
--- a/src/Pipes/Enumerator.lhs
+++ b/src/Pipes/Enumerator.lhs
@@ -13,14 +13,14 @@
 > -- can be fed into an iteratee (or, more specifically, 'E.Step'),
 > -- resulting in an 'E.Enumerator'.
 > --
-> -- The library has been designed specifically for use with "Snap",
+> -- The library has been designed specifically for use with Snap,
 > -- but I'm sure that many other interesting uses of it exist.
 
 > module Pipes.Enumerator (
 >   fromStream, toStream, toSingletonStream,
 >   iterateeToPipe, stepToPipe,
 >   pipeToIteratee,
->   pipeToEnumerator
+>   pipeToEnumerator, pipeToEnumerator'
 > ) where
 
 > import Control.Exception (SomeException)
