diff options
| author | 2018-03-15 09:49:04 +0100 | |
|---|---|---|
| committer | 2018-03-15 09:49:04 +0100 | |
| commit | b0e459b3d19f2e5e63bcd19071532f1a7599df6b (patch) | |
| tree | 776c2061b0cbcf0b223306090ba8e87e863bb7b3 | |
| parent | Refactored clap to use inline loops where possible. (diff) | |
| download | zig-clap-b0e459b3d19f2e5e63bcd19071532f1a7599df6b.tar.gz zig-clap-b0e459b3d19f2e5e63bcd19071532f1a7599df6b.tar.xz zig-clap-b0e459b3d19f2e5e63bcd19071532f1a7599df6b.zip | |
Fixed help fn
| -rw-r--r-- | clap.zig | 2 |
1 files changed, 1 insertions, 1 deletions
| @@ -250,7 +250,7 @@ pub fn Parser(comptime Result: type, comptime ParseError: type, comptime default | |||
| 250 | } | 250 | } |
| 251 | 251 | ||
| 252 | try out_stream.print(" " ** missing_spaces); | 252 | try out_stream.print(" " ** missing_spaces); |
| 253 | try out_stream.print("{}\n", option.help_message); | 253 | try out_stream.print("{}\n", option.help); |
| 254 | } | 254 | } |
| 255 | } | 255 | } |
| 256 | }; | 256 | }; |