about summary refs log tree commit diff
path: root/src/libcore
diff options
context:
space:
mode:
authorMatt Kraai <kraai@ftbfs.org>2018-05-14 07:15:48 -0700
committerGitHub <noreply@github.com>2018-05-14 07:15:48 -0700
commit120cd2cfd67310571982236bccb1e7679ef9beea (patch)
treeb68d4942c7d7cfd6366bcba72864d35c337d3673 /src/libcore
parent7bfa20b8b059b9591dc3782ff4b9f2bf821d81cd (diff)
downloadrust-120cd2cfd67310571982236bccb1e7679ef9beea.tar.gz
rust-120cd2cfd67310571982236bccb1e7679ef9beea.zip
Uncapitalize "You"
Diffstat (limited to 'src/libcore')
-rw-r--r--src/libcore/iter/traits.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcore/iter/traits.rs b/src/libcore/iter/traits.rs
index ddbb5998942..173dfc36f04 100644
--- a/src/libcore/iter/traits.rs
+++ b/src/libcore/iter/traits.rs
@@ -587,7 +587,7 @@ impl<'a, I: DoubleEndedIterator + ?Sized> DoubleEndedIterator for &'a mut I {
 /// that information can be useful. For example, if you want to iterate
 /// backwards, a good start is to know where the end is.
 ///
-/// When implementing an `ExactSizeIterator`, You must also implement
+/// When implementing an `ExactSizeIterator`, you must also implement
 /// [`Iterator`]. When doing so, the implementation of [`size_hint`] *must*
 /// return the exact size of the iterator.
 ///