File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ All command line arguments after `--` are command arguments, even they starts wi
38
38
cmd.OptArgs("y") // []
39
39
cmd.OptArgs("z") // [2 3]
40
40
41
- ## Parses with configurations
41
+ # Parses with configurations
42
42
43
43
The Cmd struct has the method ParseWith which parses command line arguments with configurations.
44
44
@@ -120,7 +120,7 @@ In addition,the help printing for an array of OptCfg is generated with Help.
120
120
// --foo-bar, -f This is description of foo-bar.
121
121
// --baz, -z <text> This is description of baz.
122
122
123
- ## Parse for a OptStore struct
123
+ # Parse for a OptStore struct
124
124
125
125
The Cmd struct has the method ParseFor which parses command line arguments and set their option
126
126
values to the option store which is passed as an argument.
@@ -235,7 +235,7 @@ like `optcfg:"name="`.
235
235
// This is description of baz.
236
236
// --qux This is description of qux.
237
237
238
- ## Parse command line arguments including sub command
238
+ # Parse command line arguments including sub command
239
239
240
240
This module provides methods Cmd#parseUntilSubCmd, Cmd#parseUntilSubCmdWith, and
241
241
Cmd#parseUntilSubCmdFor for parsing command line arguments including sub commands.
You can’t perform that action at this time.
0 commit comments