diff --git a/pipes-break.cabal b/pipes-break.cabal
--- a/pipes-break.cabal
+++ b/pipes-break.cabal
@@ -1,5 +1,5 @@
 name:                pipes-break
-version:             0.2.0.0
+version:             0.2.0.1
 synopsis:            Pipes for grouping by input by any delimiter (such as lines with carriage returns)
 description:
   `pipes-break` contains utility functions for splitting bytestring or text with any delimiter you like.
diff --git a/src/Pipes/Break/ByteString.hs b/src/Pipes/Break/ByteString.hs
--- a/src/Pipes/Break/ByteString.hs
+++ b/src/Pipes/Break/ByteString.hs
@@ -3,10 +3,11 @@
 
 module Pipes.Break.ByteString (
   -- * Group Producers By A Delimiter
-  -- | Break any producer up into groups with the delimiter stripped out.
+  -- | Break any producer up into groups with the delimiter stripped out with the presumption that
+  --   two 'Producer's are "equivalent" if they produce the same string when drained.
   --
-  -- >>> unBreaksBy delim (breaksBy delim foo) ≡ foo
-  -- >>> unBreakBy delim (breakBy delim foo) ≡ foo
+  -- > unBreaksBy delim (breaksBy delim foo) ≡ foo
+  -- > unBreakBy delim (breakBy delim foo) ≡ foo
   --
   -- with the presumption that two 'Producer's are "equivalent" if they produce the same string when drained.
   breakBy, unBreakBy, breaksBy, unBreaksBy,
@@ -19,12 +20,12 @@
   --   ever end with a delimiter (or end at all for that matter). The only way to find out is to store every line you receive until you find it.
   --   Therefore, the endsBy family of functions are not invertible.
   --
-  -- >>> > mconcat $ Pipes.Prelude.toList (unEndsBy "\r\n" (endsBy "\r\n" (yield "A\r\nB\r\nC")))
-  -- >>> "A\r\nB\r\nC\r\n"
+  -- > > mconcat $ Pipes.Prelude.toList (unEndsBy "\r\n" (endsBy "\r\n" (yield "A\r\nB\r\nC")))
+  -- > "A\r\nB\r\nC\r\n"
   --
   -- In other words:
   --
-  -- >>> unEndsBy delim (endsBy delim foo) ≠ foo
+  -- > unEndsBy delim (endsBy delim foo) ≠ foo
   endBy, unEndBy, endsBy, unEndsBy,
 
   -- * Utilities
@@ -47,20 +48,27 @@
 -- | Recombine a producer that had been previously broken by using a separator.  If the second stream is empty,
 --   the delimiter will be added on at the end of the first producer anyways.
 --
--- >>> > mconcat $ Pipes.Prelude.toList (unEndBy "\n" (yield "abc" >> return (yield "def")))
--- >>> "abc\ndef"
+-- > > mconcat $ Pipes.Prelude.toList (unEndBy "\n" (yield "abc" >> return (yield "def")))
+-- > "abc\ndef"
 --
--- >>> > mconcat $ Pipes.Prelude.toList (unEndBy "\n" (yield "abc" >> return (return ())))
--- >>> "abc\n"
+-- > > mconcat $ Pipes.Prelude.toList (unEndBy "\n" (yield "abc" >> return (return ())))
+-- > "abc\n"
 --
 -- This is /not/ equivalent to 'unBreakBy' and is not quite an inverse of 'endBy'.
 unEndBy :: (Monad m) => B.ByteString -> Producer B.ByteString m (Producer B.ByteString m r) -> Producer B.ByteString m r
 unEndBy = _unEndBy
 
--- | The inverse of 'breakBy'.
+-- | Recombine a producer that had been previously broken recombining it with the provided delimiter.
+--
+-- > > mconcat $ Pipes.Prelude.toList (unBreakBy "\n" (yield "abc" >> return (yield "def")))
+-- > "abc\ndef"
+--
+-- > > mconcat $ Pipes.Prelude.toList (unBreakBy "\n" (yield "abc" >> return (return ())))
+-- > "abc"
+--
+-- The inverse of 'breakBy'.
 unBreakBy :: (Monad m) => B.ByteString -> Producer B.ByteString m (Producer B.ByteString m r) -> Producer B.ByteString m r
 unBreakBy = _unBreakBy
-
 
 endsBy :: (Monad m) => B.ByteString -> Producer B.ByteString m r -> FreeT (Producer B.ByteString m) m r
 endsBy = _endsBy
diff --git a/src/Pipes/Break/Text.hs b/src/Pipes/Break/Text.hs
--- a/src/Pipes/Break/Text.hs
+++ b/src/Pipes/Break/Text.hs
@@ -3,12 +3,12 @@
 
 module Pipes.Break.Text (
   -- * Group Producers By A Delimiter
-  -- | Break any producer up into groups with the delimiter stripped out.
+  -- | Break any producer up into groups with the delimiter stripped out with the presumption that
+  --   two 'Producer's are "equivalent" if they produce the same string when drained.
   --
-  -- >>> unBreaksBy delim (breaksBy delim foo) ≡ foo
-  -- >>> unBreakBy delim (breakBy delim foo) ≡ foo
+  -- > unBreaksBy delim (breaksBy delim foo) ≡ foo
+  -- > unBreakBy delim (breakBy delim foo) ≡ foo
   --
-  -- with the presumption that two 'Producer's are "equivalent" if they produce the same string when drained.
   breakBy, unBreakBy, breaksBy, unBreaksBy,
 
   -- * Group Producers Ending By A Delimiter
@@ -19,12 +19,12 @@
   --   ever end with a delimiter (or end at all for that matter). The only way to find out is to store every line you receive until you find it.
   --   Therefore, the endsBy family of functions are not invertible.
   --
-  -- >>> > mconcat $ Pipes.Prelude.toList (unEndsBy "\r\n" (endsBy "\r\n" (yield "A\r\nB\r\nC")))
-  -- >>> "A\r\nB\r\nC\r\n"
+  -- > > mconcat $ Pipes.Prelude.toList (unEndsBy "\r\n" (endsBy "\r\n" (yield "A\r\nB\r\nC")))
+  -- > "A\r\nB\r\nC\r\n"
   --
   -- In other words:
   --
-  -- >>> unEndsBy delim (endsBy delim foo) ≠ foo
+  -- > unEndsBy delim (endsBy delim foo) ≠ foo
   endBy, unEndBy, endsBy, unEndsBy,
 
   -- * Utilities
@@ -47,11 +47,11 @@
 -- | Recombine a producer that had been previously broken by using a separator.  If the second stream is empty
 --   the delimiter will be added on at the end of the first producer anyways.
 --
--- >>> > mconcat $ Pipes.Prelude.toList (unEndBy "\n" (yield "abc" >> return (yield "def")))
--- >>> "abc\ndef"
+-- > > mconcat $ Pipes.Prelude.toList (unEndBy "\n" (yield "abc" >> return (yield "def")))
+-- > "abc\ndef"
 --
--- >>> > mconcat $ Pipes.Prelude.toList (unEndBy "\n" (yield "abc" >> return (return ())))
--- >>> "abc\n"
+-- > > mconcat $ Pipes.Prelude.toList (unEndBy "\n" (yield "abc" >> return (return ())))
+-- > "abc\n"
 --
 -- This is /not/ equivalent to 'unBreakBy' and is not quite an inverse of 'endBy'
 unEndBy :: (Monad m) => T.Text -> Producer T.Text m (Producer T.Text m r) -> Producer T.Text m r
@@ -59,15 +59,15 @@
 
 -- | Recombine a producer that had been previously broken recombining it with the provided delimiter.
 --
--- >>> > mconcat $ Pipes.Prelude.toList (unBreakBy "\n" (yield "abc" >> return (yield "def")))
--- >>> "abc\ndef"
+-- > > mconcat $ Pipes.Prelude.toList (unBreakBy "\n" (yield "abc" >> return (yield "def")))
+-- > "abc\ndef"
 --
--- >>> > mconcat $ Pipes.Prelude.toList (unBreakBy "\n" (yield "abc" >> return (return ())))
--- >>> "abc"
--- | The inverse of 'breakBy'
+-- > > mconcat $ Pipes.Prelude.toList (unBreakBy "\n" (yield "abc" >> return (return ())))
+-- > "abc"
+--
+-- The inverse of 'breakBy'
 unBreakBy :: (Monad m) => T.Text -> Producer T.Text m (Producer T.Text m r) -> Producer T.Text m r
 unBreakBy = _unBreakBy
-
 
 endsBy :: (Monad m) => T.Text -> Producer T.Text m r -> FreeT (Producer T.Text m) m r
 endsBy = _endsBy
