about summary refs log tree commit diff
diff options
context:
space:
mode:
-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 e3b2c394e54..84a622e0425 100644
--- a/library/core/src/iter/traits/iterator.rs
+++ b/library/core/src/iter/traits/iterator.rs
@@ -650,7 +650,7 @@ pub trait Iterator {
     ///
     /// let src = ["Hello", "to", "all", "people", "!!"].iter().copied();
     ///
-    /// // The closure mutably borrows it's context to generate an item.
+    /// // The closure mutably borrows its context to generate an item.
     /// let mut happy_emojis = [" ❤️ ", " 😀 "].iter().copied();
     /// let separator = || happy_emojis.next().unwrap_or(" 🦀 ");
     ///