about summary refs log tree commit diff
diff options
context:
space:
mode:
authorDylan DPC <99973273+Dylan-DPC@users.noreply.github.com>2022-04-28 20:13:03 +0200
committerGitHub <noreply@github.com>2022-04-28 20:13:03 +0200
commit2c1d58b8cc5c9638a85ee3033602bf2c9d1a35db (patch)
tree3d7963969349e8b06ce08985d3248ec30a70732e
parent0cbf3b2b30c3ae5443dbdce8e1b03c0b13fd6929 (diff)
parent332f326334b256477d252c1927524cbdb1eb6048 (diff)
Rollup merge of #96480 - user-simon:patch-1, r=Dylan-DPC
Fixed grammatical error in example comment

Added missing "we" in sentence.
-rw-r--r--library/core/src/iter/sources/repeat_with.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/core/src/iter/sources/repeat_with.rs b/library/core/src/iter/sources/repeat_with.rs
index 44bc6890c55..6f62662d880 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;
 ///