diff options
| author | 2018-12-16 13:23:40 +0100 | |
|---|---|---|
| committer | 2018-12-16 13:23:40 +0100 | |
| commit | 7800f4e2247cbf3eaf5306a7e41ff17130885328 (patch) | |
| tree | 4c2d94e25ba67d63ed7dbeb597b30dba61e3f5b6 | |
| parent | Update README.md (diff) | |
| download | zig-clap-7800f4e2247cbf3eaf5306a7e41ff17130885328.tar.gz zig-clap-7800f4e2247cbf3eaf5306a7e41ff17130885328.tar.xz zig-clap-7800f4e2247cbf3eaf5306a7e41ff17130885328.zip | |
Update README.mdv0.1.0
| -rw-r--r-- | README.md | 4 |
1 files changed, 2 insertions, 2 deletions
| @@ -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 | ||
| 18 | The `StreamingClap` is base of all the other parsers. It's a streaming parser that uses an | 18 | The `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 | ||
| 109 | Ofc, this limits you to use only parameters that are comptime known. | 109 | Ofc, this limits you to parameters that are comptime known. |
| 110 | 110 | ||
| 111 | ### `help` | 111 | ### `help` |
| 112 | 112 | ||