diff --git a/show-prettyprint.cabal b/show-prettyprint.cabal
--- a/show-prettyprint.cabal
+++ b/show-prettyprint.cabal
@@ -1,5 +1,5 @@
 name:                show-prettyprint
-version:             0.2.0.1
+version:             0.2.0.2
 synopsis:            Robust prettyprinter for output of auto-generated Show
                      instances
 description:         See README.md
@@ -23,7 +23,7 @@
                      , Text.Show.Prettyprint.Internal
   build-depends:       base >= 4.7 && < 5
                      , trifecta >= 1.6
-                     , prettyprinter >= 1
+                     , prettyprinter >= 1.2
 
                      -- Transitive dep of Trifecta, figure it out via that one
                      , ansi-wl-pprint
diff --git a/src/Text/Show/Prettyprint.hs b/src/Text/Show/Prettyprint.hs
--- a/src/Text/Show/Prettyprint.hs
+++ b/src/Text/Show/Prettyprint.hs
@@ -18,13 +18,9 @@
 -- readable,
 --
 -- >>> prettyPrint nestedExample
--- fromList [("!"
---           ,Left (Pair False ()))
+-- fromList [("!",Left (Pair False ()))
 --          ,("hello",Left (Pair True ()))
---          ,("world"
---           ,Right (Record {r1 = ('c'
---                                ,-1.2e34)
---                          ,r2 = 123}))]
+--          ,("world",Right (Record {r1 = ('c',-1.2e34),r2 = 123}))]
 module Text.Show.Prettyprint (
     prettifyShow,
     prettyShow,
