diff --git a/System/Console/Haskeline/Class.hs b/System/Console/Haskeline/Class.hs
--- a/System/Console/Haskeline/Class.hs
+++ b/System/Console/Haskeline/Class.hs
@@ -12,10 +12,10 @@
 Haskeline provides all of its functionality within the scope of a monad transformer.
 This module adds two pieces to this:
 
--- Introduced here is a type-class which defines the operations
+- Introduced here is a type-class which defines the operations
    supported by the Haskeline monad transformer - MonadHaskeline
 
--- Also is a newtype wrapper around Haskeline's InputT, called
+- A newtype wrapper around Haskeline's InputT, called
    HaskelineT. Sadly, InputT defines ints own instance of the
    mtl MonadState, which is no good for folks wanting to use
    InputT in an existing monad transformer stack.
@@ -57,6 +57,8 @@
 newtype HaskelineT m a = HaskelineT {unHaskeline :: H.InputT m a}
  deriving (Monad, Functor, Applicative, MonadIO, MonadException, MonadTrans, MonadHaskeline)
 
+-- | Run a line-reading application, reading user 'Prefs' from 
+-- @~/.haskeline@
 runHaskelineT :: MonadException m => H.Settings m -> HaskelineT m a -> m a
 runHaskelineT s m = H.runInputT s (unHaskeline m)
 
diff --git a/haskeline-class.cabal b/haskeline-class.cabal
--- a/haskeline-class.cabal
+++ b/haskeline-class.cabal
@@ -1,5 +1,5 @@
 Name:                   haskeline-class
-Version:                0.6
+Version:                0.6.1
 License:                BSD3
 License-File:           LICENSE
 Author:                 Antoine Latter
@@ -13,7 +13,7 @@
                * Introduced here is a type-class which defines the operations
                  supported by the Haskeline monad transformer - MonadHaskeline
                .
-               * Also is a newtype wrapper around Haskeline's InputT, called
+               * A newtype wrapper around Haskeline's InputT, called
                  HaskelineT. Sadly, InputT defines ints own instance of the
                  mtl MonadState, which is no good for folks wanting to use
                  InputT in an existing monad transformer stack.
@@ -25,7 +25,7 @@
                here for convinience.
                .
                Note on build-dependencies: If you've succesfully built this with
-               any packages other than the ones noted, please let me know!
+               any packages other than the ones noted, please let me know.
 
 Homepage:               http://community.haskell.org/~aslatter/code/haskeline-class
 Build-Type:             Simple
