summaryrefslogtreecommitdiff
path: root/example
diff options
context:
space:
mode:
authorGravatar Jimmi Holst Christensen2019-08-17 18:49:30 +0200
committerGravatar Jimmi Holst Christensen2019-08-17 18:49:30 +0200
commitae2900a20250d38b6ae745640bcd4ac289f6cfd4 (patch)
treee1384d13b9ebd6440703a5aff3d3874b51a695d5 /example
parentmake help message look more like other tools (diff)
downloadzig-clap-ae2900a20250d38b6ae745640bcd4ac289f6cfd4.tar.gz
zig-clap-ae2900a20250d38b6ae745640bcd4ac289f6cfd4.tar.xz
zig-clap-ae2900a20250d38b6ae745640bcd4ac289f6cfd4.zip
more features in README.md
Diffstat (limited to 'example')
-rw-r--r--example/README.md.template2
1 files changed, 2 insertions, 0 deletions
diff --git a/example/README.md.template b/example/README.md.template
index 446fd78..7963112 100644
--- a/example/README.md.template
+++ b/example/README.md.template
@@ -10,6 +10,8 @@ A simple and easy to use command line argument parser library for Zig.
10* Supports both passing values using spacing and `=` (`-a 100`, `-a=100`) 10* Supports both passing values using spacing and `=` (`-a 100`, `-a=100`)
11 * Short args also support passing values with no spacing or `=` (`-a100`) 11 * Short args also support passing values with no spacing or `=` (`-a100`)
12 * This all works with chaining (`-ba 100`, `-ba=100`, `-ba100`) 12 * This all works with chaining (`-ba 100`, `-ba=100`, `-ba100`)
13* Print help message from parameter specification.
14* Parse help message to parameter specification.
13 15
14## Examples 16## Examples
15 17