From f1c0a9fda67a2c720db22bf2c109127ac507a32c Mon Sep 17 00:00:00 2001 From: J.R. "hiljusti" Hill Date: Tue, 6 Jul 2021 02:00:25 -0700 Subject: Update example of `usage` (#45) --- example/usage.zig | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'example/usage.zig') diff --git a/example/usage.zig b/example/usage.zig index 7956570..90fa310 100644 --- a/example/usage.zig +++ b/example/usage.zig @@ -8,9 +8,9 @@ pub fn main() !void { try clap.usage( std.io.getStdErr().writer(), comptime &.{ - clap.parseParam("-h, --help Display this help and exit. ") catch unreachable, - clap.parseParam("-v, --version Output version information and exit.") catch unreachable, - clap.parseParam(" --value Output version information and exit.") catch unreachable, + clap.parseParam("-h, --help Display this help and exit. ") catch unreachable, + clap.parseParam("-v, --version Output version information and exit. ") catch unreachable, + clap.parseParam(" --value An option parameter, which takes a value.") catch unreachable, }, ); } -- cgit v1.2.3