about summary refs log tree commit diff
diff options
context:
space:
mode:
authorBoyd Kane <33420535+beyarkay@users.noreply.github.com>2022-04-14 11:19:49 +0200
committerGitHub <noreply@github.com>2022-04-14 11:19:49 +0200
commitd73e32867f45690720c17422b83c8abc8ceff645 (patch)
tree294aeb04829e3b1c7be4bfba24ff68317924730e
parentf6d957701f8113d8c05e6a2397b93ad6fc450400 (diff)
downloadrust-d73e32867f45690720c17422b83c8abc8ceff645.tar.gz
rust-d73e32867f45690720c17422b83c8abc8ceff645.zip
Remove trailing whitespace
Co-authored-by: Mara Bos <m-ou.se@m-ou.se>
-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 eae29278f55..69f06fb06ef 100644
--- a/library/core/src/iter/traits/iterator.rs
+++ b/library/core/src/iter/traits/iterator.rs
@@ -469,7 +469,7 @@ pub trait Iterator {
     /// If the zipped iterator has no more elements to return then each further attempt to advance
     /// it will first try to advance the first iterator at most one time and if it still yielded an item
     /// try to advance the second iterator at most one time.
-    ///    
+    ///
     /// To 'undo' the result of zipping up two iterators, see [`unzip`].
     ///
     /// [`unzip`]: Iterator::unzip