1
Fork 0
This commit is contained in:
Lukas Lueg 2021-01-21 20:31:37 +01:00
parent 653bcc8ad2
commit c61785ea44

View file

@ -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(" 🦀 ");
///