diff options
author | Araq <rumpf_a@web.de> | 2014-09-10 22:27:07 +0200 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2014-09-10 22:27:07 +0200 |
commit | 63c9c2877e48b14f8981366d6e110f913a8b604a (patch) | |
tree | c72e2fb1855d816a68e1c02cce7974b7c804bb91 /lib/pure | |
parent | 22fb9db8459063def6e04259f6222affec177c5c (diff) | |
download | Nim-63c9c2877e48b14f8981366d6e110f913a8b604a.tar.gz |
updated nimgrep tool
Diffstat (limited to 'lib/pure')
-rw-r--r-- | lib/pure/parseopt.nim | 2 |
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 |