summaryrefslogtreecommitdiff
path: root/example/README.md.template
diff options
context:
space:
mode:
authorGravatar Komari Spaghetti2021-05-26 21:06:10 +0200
committerGravatar Komari Spaghetti2021-05-26 21:06:10 +0200
commitc7d83fcce1739271e399260b50c5f68aa03c5908 (patch)
treef859d081955e5c8c3bc329008837d351606ec19c /example/README.md.template
parentMerge branch 'master' into zig-master (diff)
downloadzig-clap-c7d83fcce1739271e399260b50c5f68aa03c5908.tar.gz
zig-clap-c7d83fcce1739271e399260b50c5f68aa03c5908.tar.xz
zig-clap-c7d83fcce1739271e399260b50c5f68aa03c5908.zip
Update to latest zig in preperation for 0.8.0
Diffstat (limited to '')
-rw-r--r--example/README.md.template10
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.
25The simplest way to use this library is to just call the `clap.parse` function. 25The 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
31The data structure returned has lookup speed on par with array access (`arr[i]`) and validates 31The 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
33program can take: 33program 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
64Currently, this parse is the only parser that allow an array of `Param` tha 64Currently, 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
70program can take. 70program 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
93of the help message. 93of the help message.
94 94
95```zig 95```zig
96{} 96{s}
97``` 97```
98 98
99``` 99```