diff options
Diffstat (limited to 'example/README.md.template')
| -rw-r--r-- | example/README.md.template | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/example/README.md.template b/example/README.md.template index 530cea4..74a2f1d 100644 --- a/example/README.md.template +++ b/example/README.md.template | |||
| @@ -25,7 +25,7 @@ into master on every `zig` release. | |||
| 25 | The simplest way to use this library is to just call the `clap.parse` function. | 25 | The simplest way to use this library is to just call the `clap.parse` function. |
| 26 | 26 | ||
| 27 | ```zig | 27 | ```zig |
| 28 | {} | 28 | {s} |
| 29 | ``` | 29 | ``` |
| 30 | 30 | ||
| 31 | The data structure returned has lookup speed on par with array access (`arr[i]`) and validates | 31 | The data structure returned has lookup speed on par with array access (`arr[i]`) and validates |
| @@ -33,7 +33,7 @@ that the strings you pass to `option`, `options` and `flag` are actually paramet | |||
| 33 | program can take: | 33 | program can take: |
| 34 | 34 | ||
| 35 | ```zig | 35 | ```zig |
| 36 | {} | 36 | {s} |
| 37 | ``` | 37 | ``` |
| 38 | 38 | ||
| 39 | ``` | 39 | ``` |
| @@ -58,7 +58,7 @@ The `StreamingClap` is the base of all the other parsers. It's a streaming parse | |||
| 58 | `args.Iterator` to provide it with arguments lazily. | 58 | `args.Iterator` to provide it with arguments lazily. |
| 59 | 59 | ||
| 60 | ```zig | 60 | ```zig |
| 61 | {} | 61 | {s} |
| 62 | ``` | 62 | ``` |
| 63 | 63 | ||
| 64 | Currently, this parse is the only parser that allow an array of `Param` tha | 64 | Currently, this parse is the only parser that allow an array of `Param` tha |
| @@ -70,7 +70,7 @@ The `help`, `helpEx` and `helpFull` are functions for printing a simple list of | |||
| 70 | program can take. | 70 | program can take. |
| 71 | 71 | ||
| 72 | ```zig | 72 | ```zig |
| 73 | {} | 73 | {s} |
| 74 | ``` | 74 | ``` |
| 75 | 75 | ||
| 76 | ``` | 76 | ``` |
| @@ -93,7 +93,7 @@ The `usage`, `usageEx` and `usageFull` are functions for printing a small abbrev | |||
| 93 | of the help message. | 93 | of the help message. |
| 94 | 94 | ||
| 95 | ```zig | 95 | ```zig |
| 96 | {} | 96 | {s} |
| 97 | ``` | 97 | ``` |
| 98 | 98 | ||
| 99 | ``` | 99 | ``` |