diff options
Diffstat (limited to 'example/simple-ex.zig')
| -rw-r--r-- | example/simple-ex.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/example/simple-ex.zig b/example/simple-ex.zig index 154e486..22f657f 100644 --- a/example/simple-ex.zig +++ b/example/simple-ex.zig | |||
| @@ -3,7 +3,7 @@ pub fn main() !void { | |||
| 3 | defer _ = gpa.deinit(); | 3 | defer _ = gpa.deinit(); |
| 4 | 4 | ||
| 5 | // First we specify what parameters our program can take. | 5 | // First we specify what parameters our program can take. |
| 6 | // We can use `parseParamsComptime` to parse a string into an array of `Param(Help)` | 6 | // We can use `parseParamsComptime` to parse a string into an array of `Param(Help)`. |
| 7 | const params = comptime clap.parseParamsComptime( | 7 | const params = comptime clap.parseParamsComptime( |
| 8 | \\-h, --help Display this help and exit. | 8 | \\-h, --help Display this help and exit. |
| 9 | \\-n, --number <INT> An option parameter, which takes a value. | 9 | \\-n, --number <INT> An option parameter, which takes a value. |