From d6cd152cd55b41ac591e2c013c43bf33ba109154 Mon Sep 17 00:00:00 2001 From: Justin Yao Du Date: Mon, 11 May 2026 23:26:49 -0700 Subject: [PATCH] Update iterator.rs --- 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 6dc748c568fcd..c5182cb3d0720 100644 --- a/library/core/src/iter/traits/iterator.rs +++ b/library/core/src/iter/traits/iterator.rs @@ -3674,7 +3674,7 @@ pub const trait Iterator { Sum::sum(self) } - /// Iterates over the entire iterator, multiplying all the elements + /// Iterates over the entire iterator, multiplying all the elements. /// /// An empty iterator returns the one value of the type. ///