summary refs log tree commit diff
path: root/src/libcore
diff options
context:
space:
mode:
authorArtur Kovacs <kovacs.artur.barnabas@gmail.com>2019-11-04 20:37:39 +0100
committerArtur Kovacs <kovacs.artur.barnabas@gmail.com>2019-11-04 20:37:39 +0100
commit6ce3e1df478cf4f865f4aa5d7a55bae2d87e5871 (patch)
treee5ef9ff5d75265909553aa0f01d4c2dbc35e46c2 /src/libcore
parent7550b618f9489f7e7f7c4659beef6f0070ad8b19 (diff)
downloadrust-6ce3e1df478cf4f865f4aa5d7a55bae2d87e5871.tar.gz
rust-6ce3e1df478cf4f865f4aa5d7a55bae2d87e5871.zip
Fixed trailing whitespace.
Diffstat (limited to 'src/libcore')
-rw-r--r--src/libcore/iter/traits/iterator.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcore/iter/traits/iterator.rs b/src/libcore/iter/traits/iterator.rs
index 90535a647cc..e9bbe330208 100644
--- a/src/libcore/iter/traits/iterator.rs
+++ b/src/libcore/iter/traits/iterator.rs
@@ -202,7 +202,7 @@ pub trait Iterator {
     /// Consumes the iterator, counting the number of iterations and returning it.
     ///
     /// This method will evaluate the iterator until its [`next`] returns
-    /// [`None`]. Once [`None`] is encountered, `count()` returns one less than the 
+    /// [`None`]. Once [`None`] is encountered, `count()` returns one less than the
     /// number of times it called [`next`]. Note that [`next`] has to be called at
     /// least once even if the iterator does not have any elements.
     ///