diff --git a/System/Console/Terminfo/PrettyPrint.hs b/System/Console/Terminfo/PrettyPrint.hs
--- a/System/Console/Terminfo/PrettyPrint.hs
+++ b/System/Console/Terminfo/PrettyPrint.hs
@@ -4,7 +4,7 @@
     ScopedEffect(..)
   , with
   , Effect(..) -- unpaired effects
-  -- ** graceful feature degradation
+  -- ** Graceful degradation
   , soft
   -- ** Effects (built with soft)
   , blink -- with (soft Blink)
@@ -31,12 +31,14 @@
   , ring
   -- * A Color Pretty Printer
   , TermDoc
+  , display
+  -- ** Progressively less magical formatting
   , displayDoc
   , displayDoc'
   , displayDoc''
-  -- * A Classy Interface
+  -- ** A Classy Interface
   , PrettyTerm(..)
-  -- * Evaluation
+  -- ** Evaluation
   , SimpleTermDoc
   , evalTermState
   , displayCap
@@ -188,6 +190,9 @@
    _ <- initScr
    snd <$> scrSize
  `finally` endWin
+
+display :: TermDoc -> IO ()
+display = displayDoc 0.6
 
 displayDoc :: Float -> TermDoc -> IO ()
 displayDoc ribbon doc = do
diff --git a/wl-pprint-terminfo.cabal b/wl-pprint-terminfo.cabal
--- a/wl-pprint-terminfo.cabal
+++ b/wl-pprint-terminfo.cabal
@@ -1,6 +1,6 @@
 name:          wl-pprint-terminfo
 category:      Control, Monads, Text
-version:       0.2.2
+version:       0.2.3
 cabal-version: >= 1.6
 license:       BSD3
 license-file:  LICENSE
