docs(tutorial): Clarify subcommand wording

This commit is contained in:
Ed Page 2022-05-03 15:36:34 -05:00
parent 396ea15a41
commit 97a5c27d74

View file

@ -266,7 +266,7 @@ name: Some("bob")
### Subcommands
Subcommands are derived with `Subcommand` that get added via `#[clap(subcommand)]` attribute. Each
Subcommands are derived with `#[derive(Subcommand)]` and be added via `#[clap(subcommand)]` attribute. Each
instance of a Subcommand can have its own version, author(s), Args, and even its own
subcommands.