summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/README.md b/README.md
index 92de659..c46ef11 100644
--- a/README.md
+++ b/README.md
@@ -20,9 +20,9 @@ The `StreamingClap` is base of all the other parsers. It's a streaming parser th
20 20
21```rust 21```rust
22const params = []clap.Param(u8){ 22const params = []clap.Param(u8){
23 clap.Param(void).flag('h', false, clap.Names.both("help")), 23 clap.Param(u8).flag('h', false, clap.Names.both("help")),
24 clap.Param(void).option('n', true, clap.Names.both("number")), 24 clap.Param(u8).option('n', true, clap.Names.both("number")),
25 clap.Param(void).positional('f'), 25 clap.Param(u8).positional('f'),
26}; 26};
27 27
28var os_iter = clap.args.OsIterator.init(allocator); 28var os_iter = clap.args.OsIterator.init(allocator);