about summary refs log tree commit diff
diff options
context:
space:
mode:
authorSimon <48656638+user-simon@users.noreply.github.com>2022-04-27 17:27:02 +0200
committerGitHub <noreply@github.com>2022-04-27 17:27:02 +0200
commit332f326334b256477d252c1927524cbdb1eb6048 (patch)
treed64d6317a791159d7233e9df7b6af0f5bf01eb5c
parent2799141fdec79f2eb1ce75f27bf9982a495f72d8 (diff)
downloadrust-332f326334b256477d252c1927524cbdb1eb6048.tar.gz
rust-332f326334b256477d252c1927524cbdb1eb6048.zip
Fixed grammatical error in example comment
-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;
 ///