From 465d495b6d11e92ab97603a5bdd880a694480890 Mon Sep 17 00:00:00 2001 From: JR Heard Date: Sun, 15 Aug 2021 20:02:18 -0700 Subject: [PATCH] fix typo --- src/derive.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/derive.rs b/src/derive.rs index cc4dc52b..918f8f06 100644 --- a/src/derive.rs +++ b/src/derive.rs @@ -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`.