Skip to content

Commit 0bcc712

Browse files
committed
fix(Usage Parser): fixes a bug where literal single quotes weren't allowed in help strings
Closes #406
1 parent f50b8db commit 0bcc712

File tree

2 files changed

+966
-18
lines changed

2 files changed

+966
-18
lines changed

src/args/arg.rs

+3
Original file line numberDiff line numberDiff line change
@@ -206,6 +206,9 @@ impl<'a, 'b> Arg<'a, 'b> {
206206
/// **NOTE**: Not all settings may be set using the usage string method. Some properties are
207207
/// only available via the builder pattern.
208208
///
209+
/// **NOTE**: Only ASCII values in `from_usage` strings are officially supported. Some UTF-8
210+
/// codepoints may work just fine, but this is not guaranteed.
211+
///
209212
/// # Syntax
210213
///
211214
/// Usage strings typically following the form:

0 commit comments

Comments
 (0)