about summary refs log tree commit diff
diff options
context:
space:
mode:
authorlukaslueg <lukas.lueg@gmail.com>2021-04-07 18:02:39 +0200
committerGitHub <noreply@github.com>2021-04-07 18:02:39 +0200
commit4c850f3783d1cb5f216da50e29aa2c9ed0164a93 (patch)
treeaf79a43a2e084a799d93db7131b9af5b49d56c7d
parent72796a7c36d60cd5d32e181dd0fca924399c2a03 (diff)
downloadrust-4c850f3783d1cb5f216da50e29aa2c9ed0164a93.tar.gz
rust-4c850f3783d1cb5f216da50e29aa2c9ed0164a93.zip
Update library/core/src/iter/traits/iterator.rs
Co-authored-by: Yuki Okushi <jtitor@2k36.org>
-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 057004f1912..8a89f72ca5c 100644
--- a/library/core/src/iter/traits/iterator.rs
+++ b/library/core/src/iter/traits/iterator.rs
@@ -944,7 +944,7 @@ pub trait Iterator {
     /// Note that the underlying iterator is still advanced when [`peek`] or
     /// [`peek_mut`] are called for the first time: In order to retrieve the
     /// next element, [`next`] is called on the underlying iterator, hence any
-    /// side effects (i.e.  anything other than fetching the next value) of
+    /// side effects (i.e. anything other than fetching the next value) of
     /// the [`next`] method will occur.
     ///
     ///