diff --git a/lib/Pipes/Cliff.hs b/lib/Pipes/Cliff.hs
--- a/lib/Pipes/Cliff.hs
+++ b/lib/Pipes/Cliff.hs
@@ -118,9 +118,6 @@
 combination of standard input, standard output, and standard error.
 Use the 'NonPipe' type to describe what you want to do with streams
 you do NOT want to create a stream for.  For example, to create a
-subprocess that does not create a Pipe for any of the standard
-streams, use 'pipeNone'.  You must describe what you want done with
-standard input, standard output, and standard error.  To create a
 subprocess that creates a 'Proxy' for standard input and standard
 output, use 'pipeInputOutput'.  You must describe what you want done
 with standard error.  A 'Producer' is returned for standard output
diff --git a/lib/Pipes/Cliff/Core.hs b/lib/Pipes/Cliff/Core.hs
--- a/lib/Pipes/Cliff/Core.hs
+++ b/lib/Pipes/Cliff/Core.hs
@@ -186,7 +186,7 @@
 
   , handler :: Oopsie -> IO ()
   -- ^ Whenever an IO exception arises during the course of various
-  -- IO actios, the exception is caught and placed into an 'Oopsie'
+  -- IO actions, the exception is caught and placed into an 'Oopsie'
   -- that indicates why and where the exception happened.  The
   -- 'handler' determines what happens when an 'Oopsie' comes in.
   -- See 'Oopsie' for details.
diff --git a/lib/Pipes/Cliff/Examples.hs b/lib/Pipes/Cliff/Examples.hs
--- a/lib/Pipes/Cliff/Examples.hs
+++ b/lib/Pipes/Cliff/Examples.hs
@@ -32,10 +32,11 @@
 -- without a framework like @pipes@.
 
 produceNumbers :: Monad m => Producer BS8.ByteString m r
-produceNumbers = go (0 :: Int)
+produceNumbers
+  = iterate' succ (0 :: Int)
+  >-> P.show >-> P.map BS8.pack >-> P.map (`BS8.snoc` '\n')
   where
-    go i = yield ((BS8.pack . show $ i) `BS8.snoc` '\n')
-      >> go (succ i)
+    iterate' nxt i = yield i >> iterate' nxt (nxt i)
 
 -- | Streams an infinite list of numbers to @less@.  Shows off how
 -- you can use "Pipes.Cliff" even for non-finite 'Producer's.  Don't
diff --git a/pipes-cliff.cabal b/pipes-cliff.cabal
--- a/pipes-cliff.cabal
+++ b/pipes-cliff.cabal
@@ -3,11 +3,11 @@
 -- http://www.github.com/massysett/cartel
 --
 -- Script name used to generate: genCabal.hs
--- Generated on: 2015-03-29 17:35:28.800812 EDT
+-- Generated on: 2015-04-14 07:18:42.623619 EDT
 -- Cartel library version: 0.14.2.6
 
 name: pipes-cliff
-version: 0.10.0.0
+version: 0.10.0.2
 cabal-version: >= 1.18
 license: BSD3
 license-file: LICENSE
