diff options
| author | Simon <48656638+user-simon@users.noreply.github.com> | 2022-04-27 17:27:02 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-04-27 17:27:02 +0200 |
| commit | 332f326334b256477d252c1927524cbdb1eb6048 (patch) | |
| tree | d64d6317a791159d7233e9df7b6af0f5bf01eb5c | |
| parent | 2799141fdec79f2eb1ce75f27bf9982a495f72d8 (diff) | |
| download | rust-332f326334b256477d252c1927524cbdb1eb6048.tar.gz rust-332f326334b256477d252c1927524cbdb1eb6048.zip | |
Fixed grammatical error in example comment
| -rw-r--r-- | library/core/src/iter/sources/repeat_with.rs | 2 |
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; /// |
