diff --git a/System/Console/CmdArgs/Implicit/Type.hs b/System/Console/CmdArgs/Implicit/Type.hs
--- a/System/Console/CmdArgs/Implicit/Type.hs
+++ b/System/Console/CmdArgs/Implicit/Type.hs
@@ -18,7 +18,7 @@
 data CmdArgs a = CmdArgs
     {cmdArgsValue :: a -- ^ The underlying value being wrapped.
     ,cmdArgsHelp :: Maybe String -- ^ @Just@ if @--help@ is given, then gives the help message for display.
-    ,cmdArgsVersion :: Maybe String -- ^ @Just@ if @--verion@ is given, then gives the version message for display.
+    ,cmdArgsVersion :: Maybe String -- ^ @Just@ if @--version@ is given, then gives the version message for display.
     ,cmdArgsVerbosity :: Maybe Verbosity -- ^ @Just@ if @--quiet@ or @--verbose@ is given, then gives the verbosity to use.
     ,cmdArgsPrivate :: CmdArgsPrivate -- ^ Private: Only exported due to Haddock limitations.
     }
diff --git a/System/Console/CmdArgs/Test/Implicit/HLint.hs b/System/Console/CmdArgs/Test/Implicit/HLint.hs
--- a/System/Console/CmdArgs/Test/Implicit/HLint.hs
+++ b/System/Console/CmdArgs/Test/Implicit/HLint.hs
@@ -9,7 +9,7 @@
     {report :: [FilePath]
     ,hint :: [FilePath]
     ,color :: Bool
-    ,ignore :: [String]
+    ,ignore_ :: [String]
     ,show_ :: Bool
     ,extension :: [String]
     ,language :: [String]
@@ -28,7 +28,7 @@
     {report = def &= opt "report.html" &= typFile &= help "Generate a report in HTML"
     ,hint = def &= typFile &= help "Hint/ignore file to use"
     ,color = def &= name "c" &= name "colour" &= help "Color the output (requires ANSI terminal)"
-    ,ignore = def &= typ "MESSAGE" &= help "Ignore a particular hint"
+    ,ignore_ = def &= typ "MESSAGE" &= help "Ignore a particular hint"
     ,show_ = def &= help "Show all ignored ideas"
     ,extension = def &= typ "EXT" &= help "File extensions to search (defaults to hs and lhs)"
     ,language = def &= name "X" &= typ "LANG" &= help "Language extension (Arrows, NoCPP)"
diff --git a/cmdargs.cabal b/cmdargs.cabal
--- a/cmdargs.cabal
+++ b/cmdargs.cabal
@@ -1,7 +1,7 @@
 cabal-version:      >= 1.6
 build-type:         Simple
 name:               cmdargs
-version:            0.6
+version:            0.6.1
 license:            BSD3
 license-file:       LICENSE
 category:           Console
