From 4b59b35b76e9d14205f8b11f26bbf5920f8f936b Mon Sep 17 00:00:00 2001 From: Adam Skoufis Date: Thu, 14 Oct 2021 13:47:54 +1100 Subject: [PATCH] Add missing word to `FromStr` trait docs --- library/core/src/str/traits.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/core/src/str/traits.rs b/library/core/src/str/traits.rs index 12d79a56a527c..e225776bc647f 100644 --- a/library/core/src/str/traits.rs +++ b/library/core/src/str/traits.rs @@ -536,7 +536,7 @@ pub trait FromStr: Sized { /// /// If parsing succeeds, return the value inside [`Ok`], otherwise /// when the string is ill-formatted return an error specific to the - /// inside [`Err`]. The error type is specific to implementation of the trait. + /// inside [`Err`]. The error type is specific to the implementation of the trait. /// /// # Examples ///