summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/README.md b/README.md
index 4576ace..646c052 100644
--- a/README.md
+++ b/README.md
@@ -224,9 +224,9 @@ pub fn main() !void {
224 try clap.usage( 224 try clap.usage(
225 std.io.getStdErr().writer(), 225 std.io.getStdErr().writer(),
226 comptime &.{ 226 comptime &.{
227 clap.parseParam("-h, --help Display this help and exit. ") catch unreachable, 227 clap.parseParam("-h, --help Display this help and exit. ") catch unreachable,
228 clap.parseParam("-v, --version Output version information and exit.") catch unreachable, 228 clap.parseParam("-v, --version Output version information and exit. ") catch unreachable,
229 clap.parseParam(" --value <N> Output version information and exit.") catch unreachable, 229 clap.parseParam(" --value <N> An option parameter, which takes a value.") catch unreachable,
230 }, 230 },
231 ); 231 );
232} 232}