diff --git a/Web/Herringbone.hs b/Web/Herringbone.hs
--- a/Web/Herringbone.hs
+++ b/Web/Herringbone.hs
@@ -1,5 +1,5 @@
 {- |
-wai-herringbone is a Haskell/Wai library for compiling and serving web assets.
+herringbone is a Haskell library for compiling and serving web assets.
 It aims to make it dead simple to create a 'Network.Wai.Middleware' or
 'Network.Wai.Application' which deals with all of your static assets, including
 preprocessing for languages like Fay, CoffeeScript, Sass, and LESS.
@@ -21,9 +21,9 @@
 >     )
 >
 > -- You can now access assets programmatically
-> asset <- findAsset hb (makeLogicalPath ["application.js"])
+> asset <- findAsset hb (fromJust . makeLogicalPath $ ["application.js"])
 >
-> -- Or make a WAI Application to do it for you
+> -- Or serve them with a Wai application
 > app = toApplication hb
 -}
 module Web.Herringbone (
diff --git a/herringbone.cabal b/herringbone.cabal
--- a/herringbone.cabal
+++ b/herringbone.cabal
@@ -1,5 +1,5 @@
 name:                herringbone
-version:             0.0.2
+version:             0.0.3
 synopsis:            A library for compiling and serving static web assets.
 description:         A library for compiling and serving static web assets. For more information, please see <https://github.com/hdgarrood/herringbone>.
 license:             MIT
