summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md3
1 files changed, 2 insertions, 1 deletions
diff --git a/README.md b/README.md
index b90f5cd..b4ecc65 100644
--- a/README.md
+++ b/README.md
@@ -13,4 +13,5 @@ See [example](example.zig).
13 * Chaining `-abc` where `a` and `b` does not take values. 13 * Chaining `-abc` where `a` and `b` does not take values.
14* Long arguments `--long` 14* Long arguments `--long`
15* Supports both passing values using spacing and `=` (`-a 100`, `-a=100`) 15* Supports both passing values using spacing and `=` (`-a 100`, `-a=100`)
16 * Both work with chaining (`-ba 100`, `-ba=100`) 16 * Short args also support passing values with no spacing or `=` (`-a100`)
17 * This all works with chaining (`-ba 100`, `-ba=100`, `-ba100`)