Merge pull request #5635 from epage/delim

docs(builder): Remove bad copy/paste docs
This commit is contained in:
Ed Page 2024-08-07 15:33:05 -05:00 committed by GitHub
commit ecb4dca96f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1545,11 +1545,8 @@ impl Arg {
/// Allow grouping of multiple values via a delimiter.
///
/// i.e. should `--option=val1,val2,val3` be parsed as three values (`val1`, `val2`,
/// and `val3`) or as a single value (`val1,val2,val3`). Defaults to using `,` (comma) as the
/// value delimiter for all arguments that accept values (options and positional arguments)
///
/// **NOTE:** implicitly sets [`Arg::action(ArgAction::Set)`]
/// i.e. allow values (`val1,val2,val3`) to be parsed as three values (`val1`, `val2`,
/// and `val3`) instead of one value (`val1,val2,val3`).
///
/// # Examples
///