From 332f326334b256477d252c1927524cbdb1eb6048 Mon Sep 17 00:00:00 2001 From: Simon <48656638+user-simon@users.noreply.github.com> Date: Wed, 27 Apr 2022 17:27:02 +0200 Subject: [PATCH] Fixed grammatical error in example comment --- library/core/src/iter/sources/repeat_with.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/core/src/iter/sources/repeat_with.rs b/library/core/src/iter/sources/repeat_with.rs index 44bc6890c55b5..6f62662d88066 100644 --- a/library/core/src/iter/sources/repeat_with.rs +++ b/library/core/src/iter/sources/repeat_with.rs @@ -27,7 +27,7 @@ use crate::iter::{FusedIterator, TrustedLen}; /// use std::iter; /// /// // let's assume we have some value of a type that is not `Clone` -/// // or which don't want to have in memory just yet because it is expensive: +/// // or which we don't want to have in memory just yet because it is expensive: /// #[derive(PartialEq, Debug)] /// struct Expensive; ///