diff --git a/pretty-simple.cabal b/pretty-simple.cabal
--- a/pretty-simple.cabal
+++ b/pretty-simple.cabal
@@ -1,5 +1,5 @@
 name:                pretty-simple
-version:             1.0.0.3
+version:             1.0.0.4
 synopsis:            pretty printer for data types with a 'Show' instance.
 description:         Please see README.md
 homepage:            https://github.com/cdepillabout/pretty-simple
@@ -7,7 +7,7 @@
 license-file:        LICENSE
 author:              Dennis Gosnell
 maintainer:          cdep.illabout@gmail.com
-copyright:           2016 Dennis Gosnell
+copyright:           2017 Dennis Gosnell
 category:            Text
 build-type:          Simple
 extra-source-files:  README.md
@@ -27,7 +27,7 @@
                      , Text.Pretty.Simple.Internal.ExprToOutput
                      , Text.Pretty.Simple.Internal.Output
                      , Text.Pretty.Simple.Internal.OutputPrinter
-  build-depends:       base >= 4.6 && < 5
+  build-depends:       base >= 4.8 && < 5
                      , ansi-terminal
                      , containers
                      , lens
@@ -51,9 +51,9 @@
   ghc-options:         -Wall -threaded -rtsopts -with-rtsopts=-N
 
   if flag(buildexample)
-      buildable:       True
-  if !flag(buildexample)
-      buildable:       False
+    buildable:       True
+  else
+    buildable:       False
 
 test-suite pretty-simple-doctest
   type:                exitcode-stdio-1.0
diff --git a/src/Text/Pretty/Simple.hs b/src/Text/Pretty/Simple.hs
--- a/src/Text/Pretty/Simple.hs
+++ b/src/Text/Pretty/Simple.hs
@@ -116,7 +116,7 @@
 --
 -- Slightly more complicated lists:
 --
--- >>> pPrintNoColor $ [ Foo [ (),    () ] "hello" ]
+-- >>> pPrintNoColor $ [ Foo [ (), () ] "hello" ]
 -- [ Foo
 --     [ ()
 --     , ()
