about summary refs log tree commit diff
diff options
context:
space:
mode:
authorJohn Hörnvall <trolledwoods@gmail.com>2021-02-27 13:10:00 +0100
committerJohn Hörnvall <trolledwoods@gmail.com>2021-02-27 13:10:00 +0100
commit772543aeff475bd96b2de17a7b245a0eb62ca6d8 (patch)
tree592dced9bbbca5db5d389ab12f459a3232dc8467
parent5b9905b0f3fdb61a9371dfd029c03d71317b1cd3 (diff)
downloadrust-772543aeff475bd96b2de17a7b245a0eb62ca6d8.tar.gz
rust-772543aeff475bd96b2de17a7b245a0eb62ca6d8.zip
Removed trailing whitespace
-rw-r--r--library/core/src/str/iter.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/core/src/str/iter.rs b/library/core/src/str/iter.rs
index cd67c773780..642da2d2170 100644
--- a/library/core/src/str/iter.rs
+++ b/library/core/src/str/iter.rs
@@ -190,7 +190,7 @@ impl<'a> CharIndices<'a> {
         self.iter.as_str()
     }
 
-    /// Returns the byte position of the next character, or the length 
+    /// Returns the byte position of the next character, or the length
     /// of the underlying string if there are no more characters.
     ///
     /// # Examples