summaryrefslogtreecommitdiff
path: root/example/streaming-clap.zig
diff options
context:
space:
mode:
Diffstat (limited to 'example/streaming-clap.zig')
-rw-r--r--example/streaming-clap.zig4
1 files changed, 2 insertions, 2 deletions
diff --git a/example/streaming-clap.zig b/example/streaming-clap.zig
index faf388a..b92a9e6 100644
--- a/example/streaming-clap.zig
+++ b/example/streaming-clap.zig
@@ -15,11 +15,11 @@ pub fn main() !void {
15 clap.Param(u8){ 15 clap.Param(u8){
16 .id = 'n', 16 .id = 'n',
17 .names = clap.Names{ .short = 'n', .long = "number" }, 17 .names = clap.Names{ .short = 'n', .long = "number" },
18 .takes_value = true, 18 .takes_value = .One,
19 }, 19 },
20 clap.Param(u8){ 20 clap.Param(u8){
21 .id = 'f', 21 .id = 'f',
22 .takes_value = true, 22 .takes_value = .One,
23 }, 23 },
24 }; 24 };
25 25