diff --git a/README.md b/README.md
--- a/README.md
+++ b/README.md
@@ -1,5 +1,7 @@
-pretty-printing for GraphViz labels
+GraphViz pretty-printing
 ===================================
+
+http://hackage.haskell.org/package/prettyprinter-graphviz
 
 Just some simple utility functions for hooking up the Haskell libraries [graphviz](https://hackage.haskell.org/package/graphviz) and [prettyprinter](https://hackage.haskell.org/package/prettyprinter).
 
diff --git a/prettyprinter-graphviz.cabal b/prettyprinter-graphviz.cabal
--- a/prettyprinter-graphviz.cabal
+++ b/prettyprinter-graphviz.cabal
@@ -1,6 +1,6 @@
 cabal-version:       2.4
 name:                prettyprinter-graphviz
-version:             0.1.0.0
+version:             0.1.0.1
 synopsis:            a prettyprinter backend for graphviz
 description:         Contains utility functions for rendering pretty GraphViz labels.
 homepage:            https://github.com/georgefst/prettyprinter-graphviz
diff --git a/src/Data/Text/Prettyprint/Doc/Render/GraphViz.hs b/src/Data/Text/Prettyprint/Doc/Render/GraphViz.hs
--- a/src/Data/Text/Prettyprint/Doc/Render/GraphViz.hs
+++ b/src/Data/Text/Prettyprint/Doc/Render/GraphViz.hs
@@ -63,6 +63,6 @@
     []     -> e
     _ : xs -> xs
 
--- | Helper for rendering an individual 'TextItem'.
+-- | Helper for rendering an individual 'H.TextItem'.
 renderText :: H.Attributes -> T.Text -> H.TextItem
 renderText cs = H.Font cs . pure . H.Str . TL.fromStrict
