summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Jimmi Holst Christensen2025-07-22 10:57:08 +0200
committerGravatar Jimmi Holst Christensen2025-07-22 10:57:08 +0200
commit50be7bc7bfe5470bb90bb7c868b88f98078865a6 (patch)
treec4bfd41ee267799a107cfaaf7a9e4eb499235774
parentfeat: Add `clap.usageToFile` (diff)
downloadzig-clap-50be7bc7bfe5470bb90bb7c868b88f98078865a6.tar.gz
zig-clap-50be7bc7bfe5470bb90bb7c868b88f98078865a6.tar.xz
zig-clap-50be7bc7bfe5470bb90bb7c868b88f98078865a6.zip
fix: Typo in `HelpOptions.markdown_lite` doc comment
-rw-r--r--clap.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/clap.zig b/clap.zig
index 1e710ea..c49ee22 100644
--- a/clap.zig
+++ b/clap.zig
@@ -1315,7 +1315,7 @@ pub const Help = struct {
1315}; 1315};
1316 1316
1317pub const HelpOptions = struct { 1317pub const HelpOptions = struct {
1318 /// Render the description of a parameter in a simular way to how markdown would render 1318 /// Render the description of a parameter in a similar way to how markdown would render
1319 /// such a string. This means that single newlines won't be respected unless followed by 1319 /// such a string. This means that single newlines won't be respected unless followed by
1320 /// bullet points or other markdown elements. 1320 /// bullet points or other markdown elements.
1321 markdown_lite: bool = true, 1321 markdown_lite: bool = true,