summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index 0d88e53..b64ab2b 100644
--- a/README.md
+++ b/README.md
@@ -15,7 +15,7 @@ A simple and easy to use command line argument parser library for Zig.
15 15
16### `StreamingClap` 16### `StreamingClap`
17 17
18The `StreamingClap` is base of all the other parsers. It's a streaming parser that uses an 18The `StreamingClap` is the base of all the other parsers. It's a streaming parser that uses an
19`args.Iterator` to provide it with arguments lazily. 19`args.Iterator` to provide it with arguments lazily.
20 20
21```rust 21```rust
@@ -106,7 +106,7 @@ zig-clap/example/comptime-clap.zig:41:18: note: called from here
106 ^ 106 ^
107``` 107```
108 108
109Ofc, this limits you to use only parameters that are comptime known. 109Ofc, this limits you to parameters that are comptime known.
110 110
111### `help` 111### `help`
112 112