From 715c562d71f18ceb077482fc22339b3a73816b4e Mon Sep 17 00:00:00 2001 From: Jonas Berlin Date: Mon, 13 Dec 2021 13:52:17 +0200 Subject: [PATCH] [ReviewFix] Linguistics --- library/core/src/iter/traits/iterator.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/core/src/iter/traits/iterator.rs b/library/core/src/iter/traits/iterator.rs index 6a38600c956f..9a9a844f41bb 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 ///