summary refs log tree commit diff stats
path: root/lib/pure
diff options
context:
space:
mode:
authorAraq <rumpf_a@web.de>2014-09-10 22:27:07 +0200
committerAraq <rumpf_a@web.de>2014-09-10 22:27:07 +0200
commit63c9c2877e48b14f8981366d6e110f913a8b604a (patch)
treec72e2fb1855d816a68e1c02cce7974b7c804bb91 /lib/pure
parent22fb9db8459063def6e04259f6222affec177c5c (diff)
downloadNim-63c9c2877e48b14f8981366d6e110f913a8b604a.tar.gz
updated nimgrep tool
Diffstat (limited to 'lib/pure')
-rw-r--r--lib/pure/parseopt.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/pure/parseopt.nim b/lib/pure/parseopt.nim
index 786744600..8af6920c1 100644
--- a/lib/pure/parseopt.nim
+++ b/lib/pure/parseopt.nim
@@ -25,7 +25,7 @@ type
   CmdLineKind* = enum         ## the detected command line token
     cmdEnd,                   ## end of command line reached
     cmdArgument,              ## argument detected
-    cmdLongoption,            ## a long option ``--option`` detected
+    cmdLongOption,            ## a long option ``--option`` detected
     cmdShortOption            ## a short option ``-c`` detected
   OptParser* = 
       object of RootObj ## this object implements the command line parser