diff --git a/model.cabal b/model.cabal
--- a/model.cabal
+++ b/model.cabal
@@ -1,7 +1,7 @@
 name:                model
-version:             0.2
+version:             0.2.1
 synopsis:            Derive a model of a data type using Generics
-description:         See the tutorial at: https://github.com/tittoassini/model
+description:         See the github homepage for a tutorial
 homepage:            http://github.com/tittoassini/model
 license:             BSD3
 license-file:        LICENSE
diff --git a/src/Data/Model/Pretty.hs b/src/Data/Model/Pretty.hs
--- a/src/Data/Model/Pretty.hs
+++ b/src/Data/Model/Pretty.hs
@@ -21,7 +21,7 @@
   pPrint (TypeModel t e) = vcat $ [
      text "Type:"
     ,pPrint t <+> text "->" <+> pPrint (localName . declName <$> solveAll e t)
-    ,text ""
+    -- ,text "" -- Results in a split display
     ,text "Environment:"]
      ++ map (\(ref,adt) -> pPrint ref <+> text "->" <+> pPrint (stringADT e adt)) (M.assocs e)
 
