diff options
author | Araq <rumpf_a@web.de> | 2019-06-28 11:45:21 +0200 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2019-06-28 11:45:21 +0200 |
commit | 284a8cb58ac8abee54d7ed2ba95c82ad9179004f (patch) | |
tree | a5cb32c43f38053d61a5c8b3a21be9b88e2e958c /lib | |
parent | d72edfb14b5ed7fcfa0eaf63e8e291d48847ba25 (diff) | |
download | Nim-284a8cb58ac8abee54d7ed2ba95c82ad9179004f.tar.gz |
nimpretty: bugfix [bugfix]
Diffstat (limited to 'lib')
-rw-r--r-- | lib/pure/parseopt.nim | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/pure/parseopt.nim b/lib/pure/parseopt.nim index 97b3fd51d..fab32060a 100644 --- a/lib/pure/parseopt.nim +++ b/lib/pure/parseopt.nim @@ -160,11 +160,11 @@ type cmdArgument, ## An argument such as a filename cmdLongOption, ## A long option such as --option cmdShortOption ## A short option such as -c - OptParser* = - object of RootObj ## Implementation of the command line parser. - ## - ## To initialize it, use the - ## `initOptParser proc<#initOptParser,string,set[char],seq[string]>`_. + OptParser* = object of RootObj ## \ + ## Implementation of the command line parser. + ## + ## To initialize it, use the + ## `initOptParser proc<#initOptParser,string,set[char],seq[string]>`_. pos*: int inShortState: bool allowWhitespaceAfterColon: bool |