Merge pull request #2704 from jrheard/patch-1

fix typo
This commit is contained in:
Pavan Kumar Sunkara 2021-08-16 10:45:33 +01:00 committed by GitHub
commit 9d5cf64d6a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -221,7 +221,7 @@ pub trait Args: FromArgMatches + Sized {
/// Parse a sub-command into a user-defined enum.
///
/// Implementing this trait let's a parent container delegate subcommand behavior to `Self`.
/// Implementing this trait lets a parent container delegate subcommand behavior to `Self`.
/// with:
/// - `#[clap(subcommand)] field: SubCmd`: Attribute can be used with either struct fields or enum
/// variants that impl `Subcommand`.