diff options
| author | Matthias Krüger <matthias.krueger@famsik.de> | 2022-01-28 15:20:30 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-01-28 15:20:30 +0100 |
| commit | 27f68212ab8b5216e986b4bc866257029ff5b2ef (patch) | |
| tree | 74ff38dc09193cee80b1b964a219452a62dbf6b8 /library | |
| parent | 6baf25eeb10a4e6d3f94035f3d4d82b7a1d77fc0 (diff) | |
| parent | 81b4e51c412f9a476d1407005e6de09566179aaa (diff) | |
| download | rust-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.rs | 2 |
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; |
