Skip to content

Commit

Permalink
Fix crate docs.
Browse files Browse the repository at this point in the history
Closes #60
  • Loading branch information
RazrFalcon committed Oct 19, 2023
1 parent 2d3faaf commit ee9e334
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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`.<br/>
Allows combination of flags, e.g. `-abc` instead of `-a -b -c`<br/>
If `short-space-opt` or `eq-separator` are enabled, you must parse flags after values,
to prevent ambiguities.
to prevent ambiguities
*/

#![forbid(unsafe_code)]
Expand Down

0 comments on commit ee9e334

Please sign in to comment.