Fixed grammatical error in example comment

This commit is contained in:
Simon 2022-04-27 17:27:02 +02:00 committed by GitHub
parent 2799141fde
commit 332f326334
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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;
///