about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--library/core/src/str/traits.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/core/src/str/traits.rs b/library/core/src/str/traits.rs
index 12d79a56a52..e225776bc64 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
     ///