summaryrefslogtreecommitdiff
path: root/example/help.zig
diff options
context:
space:
mode:
Diffstat (limited to 'example/help.zig')
-rw-r--r--example/help.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/example/help.zig b/example/help.zig
index 64d1709..18d61b9 100644
--- a/example/help.zig
+++ b/example/help.zig
@@ -15,5 +15,5 @@ pub fn main() !void {
15 // slice of Param(Help). There is also a helpEx, which can print a 15 // slice of Param(Help). There is also a helpEx, which can print a
16 // help message for any Param, but it is more verbose to call. 16 // help message for any Param, but it is more verbose to call.
17 if (res.args.help) 17 if (res.args.help)
18 return clap.help(std.io.getStdErr().writer(), clap.Help, &params); 18 return clap.help(std.io.getStdErr().writer(), clap.Help, &params, .{});
19} 19}