about summary refs log tree commit diff
diff options
context:
space:
mode:
authorJonas Berlin <xkr47@outerspace.dyndns.org>2021-12-13 13:52:17 +0200
committerGitHub <noreply@github.com>2021-12-13 13:52:17 +0200
commit715c562d71f18ceb077482fc22339b3a73816b4e (patch)
tree1c6e908fda977d60e4ebce58b87d841ca480d89f
parent7f2f9c60c27721dee52a3fce18911103416fb380 (diff)
downloadrust-715c562d71f18ceb077482fc22339b3a73816b4e.tar.gz
rust-715c562d71f18ceb077482fc22339b3a73816b4e.zip
[ReviewFix] Linguistics
-rw-r--r--library/core/src/iter/traits/iterator.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/core/src/iter/traits/iterator.rs b/library/core/src/iter/traits/iterator.rs
index 6a38600c956..9a9a844f41b 100644
--- a/library/core/src/iter/traits/iterator.rs
+++ b/library/core/src/iter/traits/iterator.rs
@@ -3029,7 +3029,7 @@ pub trait Iterator {
     /// Instead of stopping at [`None`], the iterator will instead start again,
     /// from the beginning. After iterating again, it will start at the
     /// beginning again. And again. And again. Forever. Note that in case the
-    /// original iterator is empty the resulting iterator will also be empty.
+    /// original iterator is empty, the resulting iterator will also be empty.
     ///
     /// # Examples
     ///