diff options
Diffstat (limited to 'example/help.zig')
| -rw-r--r-- | example/help.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/example/help.zig b/example/help.zig index 2775177..c210ff9 100644 --- a/example/help.zig +++ b/example/help.zig | |||
| @@ -3,7 +3,7 @@ const clap = @import("clap"); | |||
| 3 | 3 | ||
| 4 | pub fn main() !void { | 4 | pub fn main() !void { |
| 5 | const stderr_file = std.io.getStdErr(); | 5 | const stderr_file = std.io.getStdErr(); |
| 6 | var stderr_out_stream = stderr_file.outStream(); | 6 | var stderr_out_stream = stderr_file.writer(); |
| 7 | 7 | ||
| 8 | // clap.help is a function that can print a simple help message, given a | 8 | // clap.help is a function that can print a simple help message, given a |
| 9 | // slice of Param(Help). There is also a helpEx, which can print a | 9 | // slice of Param(Help). There is also a helpEx, which can print a |