summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md2
1 files changed, 2 insertions, 0 deletions
diff --git a/README.md b/README.md
index 01bc645..297764c 100644
--- a/README.md
+++ b/README.md
@@ -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