From ee9e334fdd5bd5dac16ec882ec4bced1d6c11bc9 Mon Sep 17 00:00:00 2001 From: Yevhenii Reizner Date: Thu, 19 Oct 2023 10:31:52 +0300 Subject: [PATCH] Fix crate docs. Closes #60 --- src/lib.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index 303629e..2f2be22 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -5,7 +5,6 @@ If you think that this library doesn't support some feature, it's probably inten - No help generation - Only flags, options, free arguments and subcommands are supported -- No combined flags (like `-vvv` or `-abc`) - Options can be separated by a space, `=` or nothing. See build features - Arguments can be in any order - Non UTF-8 arguments are supported @@ -25,9 +24,10 @@ If you think that this library doesn't support some feature, it's probably inten The optional space is only applicable for short keys because `--keyvalue` would be ambiguous - `combined-flags` - Allows combination of flags, e.g. `-abc` instead of `-a -b -c`.
+ + Allows combination of flags, e.g. `-abc` instead of `-a -b -c`
If `short-space-opt` or `eq-separator` are enabled, you must parse flags after values, - to prevent ambiguities. + to prevent ambiguities */ #![forbid(unsafe_code)]