diff --git a/library/core/src/iter/traits/iterator.rs b/library/core/src/iter/traits/iterator.rs index 057004f191203..8a89f72ca5cbb 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. /// ///