Rollup merge of #93404 - rust-lang:scottmcm-patch-1, r=wesleywiser

Fix a typo from #92899

Just happened to notice this in passing
This commit is contained in:
Matthias Krüger 2022-01-28 15:20:30 +01:00 committed by GitHub
commit 27f68212ab
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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;