about summary refs log tree commit diff
diff options
context:
space:
mode:
authorscottmcm <scottmcm@users.noreply.github.com>2022-01-28 01:35:33 +0000
committerGitHub <noreply@github.com>2022-01-28 01:35:33 +0000
commit81b4e51c412f9a476d1407005e6de09566179aaa (patch)
treedce82f08c15d5a24988db15e83fd6ac14c3a25b3
parent1b4109306c1d98a8e993ec2c748d286927dddbf5 (diff)
downloadrust-81b4e51c412f9a476d1407005e6de09566179aaa.tar.gz
rust-81b4e51c412f9a476d1407005e6de09566179aaa.zip
Fix a typo from #92899
Just happened to notice this in passing
-rw-r--r--library/core/src/iter/traits/iterator.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/core/src/iter/traits/iterator.rs b/library/core/src/iter/traits/iterator.rs
index 65cadcb6c5a..a8fe5f59bae 100644
--- a/library/core/src/iter/traits/iterator.rs
+++ b/library/core/src/iter/traits/iterator.rs
@@ -515,7 +515,7 @@ pub trait Iterator {
     /// assert_eq!((2, 'o'), zipper[2]);
     /// ```
     ///
-    /// If both iterators have roughly equivalent syntax, it may me more readable to use [`zip`]:
+    /// If both iterators have roughly equivalent syntax, it may be more readable to use [`zip`]:
     ///
     /// ```
     /// use std::iter::zip;