Fix grammar in require_delimiter fn docs

This commit is contained in:
codedust 2021-07-11 12:19:54 +02:00 committed by GitHub
parent a11ca85e8f
commit 15d49064c3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -3580,9 +3580,9 @@ impl<'help> Arg<'help> {
}
/// Specifies that *multiple values* may only be set using the delimiter. This means if an
/// if an option is encountered, and no delimiter is found, it automatically assumed that no
/// additional values for that option follow. This is unlike the default, where it is generally
/// assumed that more values will follow regardless of whether or not a delimiter is used.
/// option is encountered, and no delimiter is found, it is assumed that no additional values
/// for that option follow. This is unlike the default, where it is generally assumed that
/// more values will follow regardless of whether or not a delimiter is used.
///
/// **NOTE:** The default is `false`.
///