From c6f185c3cd6d2cbd6e0fcb879b9d5cfbdc4fec41 Mon Sep 17 00:00:00 2001 From: ondrej Date: Thu, 28 Nov 2024 22:34:17 +0100 Subject: [PATCH] Update chapter_3.rs - missing "to" Adding missing "to" --- src/_tutorial/chapter_3.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/_tutorial/chapter_3.rs b/src/_tutorial/chapter_3.rs index 6dc7db2db77..ea69bf0a279 100644 --- a/src/_tutorial/chapter_3.rs +++ b/src/_tutorial/chapter_3.rs @@ -14,7 +14,7 @@ //! [`PossibleValuesParser`][crate::builder::PossibleValuesParser] or [`Arg::value_parser(["val1", //! ...])`][crate::Arg::value_parser] for short. //! -//! This allows you specify the valid values for that argument. If the user does not use one of +//! This allows you to specify the valid values for that argument. If the user does not use one of //! those specific values, they will receive a graceful exit with error message informing them //! of the mistake, and what the possible valid values are //!