about summary refs log tree commit diff
path: root/library
diff options
context:
space:
mode:
authorMatthias Krüger <matthias.krueger@famsik.de>2022-01-28 15:20:30 +0100
committerGitHub <noreply@github.com>2022-01-28 15:20:30 +0100
commit27f68212ab8b5216e986b4bc866257029ff5b2ef (patch)
tree74ff38dc09193cee80b1b964a219452a62dbf6b8 /library
parent6baf25eeb10a4e6d3f94035f3d4d82b7a1d77fc0 (diff)
parent81b4e51c412f9a476d1407005e6de09566179aaa (diff)
downloadrust-27f68212ab8b5216e986b4bc866257029ff5b2ef.tar.gz
rust-27f68212ab8b5216e986b4bc866257029ff5b2ef.zip
Rollup merge of #93404 - rust-lang:scottmcm-patch-1, r=wesleywiser
Fix a typo from #92899

Just happened to notice this in passing
Diffstat (limited to 'library')
-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;