diff --git a/Shelly.hs b/Shelly.hs
--- a/Shelly.hs
+++ b/Shelly.hs
@@ -2,7 +2,7 @@
              MultiParamTypeClasses, FlexibleInstances #-}
 
 -- | A module for shell-like / perl-like programming in Haskell. The stuff in
--- here is not pretty, but it does get job done. The functionality provided by
+-- here is not always pretty, but it gets the job done. The functionality provided by
 -- this module is (unlike standard Haskell filesystem functionality)
 -- thread-safe: each ShIO maintains its own environment and its own working
 -- directory.
@@ -79,6 +79,7 @@
 
 infixr 5 <>| 
 infixr 5 |<> 
+
 -- | mappend a Text & FilePath. Warning: uses toTextUnsafe
 (<>|) :: Text -> FilePath -> Text
 (<>|) t fp = t `mappend` toTextUnsafe fp
@@ -133,7 +134,7 @@
              , sStderr :: LT.Text
              , sDirectory :: FilePath
              , sVerbose :: Bool
-             , sPrintCommands :: Bool -- * print out command
+             , sPrintCommands :: Bool -- ^ print out command
              , sRun :: FilePath -> [Text] -> ShIO (Handle, Handle, Handle, ProcessHandle)
              , sEnvironment :: [(String, String)] }
 
diff --git a/shelly.cabal b/shelly.cabal
--- a/shelly.cabal
+++ b/shelly.cabal
@@ -1,6 +1,6 @@
 Name:       shelly
 
-Version:     0.3.0.1
+Version:     0.3.0.2
 Synopsis:    shell-like (systems) programming in Haskell
 
 Description: Shelly is a package provides a single module for convenient
