summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--example/simple-ex.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/example/simple-ex.zig b/example/simple-ex.zig
index f6a1c7f..0d90b69 100644
--- a/example/simple-ex.zig
+++ b/example/simple-ex.zig
@@ -30,7 +30,7 @@ pub fn main() !void {
30 var diag = clap.Diagnostic{}; 30 var diag = clap.Diagnostic{};
31 var res = clap.parse(clap.Help, &params, parsers, .{ 31 var res = clap.parse(clap.Help, &params, parsers, .{
32 .diagnostic = &diag, 32 .diagnostic = &diag,
33 .allocator = gpa.allocator(), 33 .allocator = gpa,
34 // The assignment separator can be configured. `--number=1` and `--number:1` is now 34 // The assignment separator can be configured. `--number=1` and `--number:1` is now
35 // allowed. 35 // allowed.
36 .assignment_separators = "=:", 36 .assignment_separators = "=:",