diff --git a/nuxeo.cabal b/nuxeo.cabal
--- a/nuxeo.cabal
+++ b/nuxeo.cabal
@@ -2,7 +2,7 @@
 --  see http://haskell.org/cabal/users-guide/
 
 name:                nuxeo
-version:             0.1.0.0
+version:             0.1.0.1
 synopsis:            Nuxeo
 description:         Nuxeo
 license:             BSD3
diff --git a/src/Nuxeo/Log.hs b/src/Nuxeo/Log.hs
--- a/src/Nuxeo/Log.hs
+++ b/src/Nuxeo/Log.hs
@@ -30,9 +30,9 @@
 type NuxeoLog = [NuxeoLogEntry]
 
 -- |Parse Nuxeo server.log
--- > logs <- parseNuxeoLog v "/opt/nuxeo-data/log/server.log"
--- > filter (\l -> (nuxeoLogEntryType l == Error)
--- >            || (nuxeoLogEntryType l == Warning)) logs
+-- >logs <- parseNuxeoLog v "/opt/nuxeo-data/log/server.log"
+-- >filter (\l -> (nuxeoLogEntryType l == Error)
+-- >           || (nuxeoLogEntryType l == Warning)) logs
 parseNuxeoLog :: Verbose -> FilePath -> IO NuxeoLog
 parseNuxeoLog v logpath = runConduitRes $ sourceFile logpath .| sinkParser (nuxeoLogParser v)
 
