about summary refs log tree commit diff
path: root/src/libcore/str
diff options
context:
space:
mode:
authorsmt923 <smtea923@gmail.com>2017-09-10 14:08:20 +0100
committersmt923 <smtea923@gmail.com>2017-09-10 14:08:20 +0100
commitf20b030f02b1124cc3ff76cc906baba6588738e1 (patch)
tree709fc0f6bc4e68317d8c3f2aaabac738f3c947d8 /src/libcore/str
parent51bbd6957523fbda1db57fd0d92f356a0ed6ac08 (diff)
downloadrust-f20b030f02b1124cc3ff76cc906baba6588738e1.tar.gz
rust-f20b030f02b1124cc3ff76cc906baba6588738e1.zip
Fix trailing whitespace
Diffstat (limited to 'src/libcore/str')
-rw-r--r--src/libcore/str/mod.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/libcore/str/mod.rs b/src/libcore/str/mod.rs
index f0dde8fc342..a9e72d6a4a8 100644
--- a/src/libcore/str/mod.rs
+++ b/src/libcore/str/mod.rs
@@ -331,7 +331,6 @@ pub fn from_utf8(v: &[u8]) -> Result<&str, Utf8Error> {
 /// ```
 /// See the docs for [`Utf8Error`][error] for more details on the kinds of
 /// errors that can be returned.
-///
 #[stable(feature = "str_mut_extras", since = "1.20.0")]
 pub fn from_utf8_mut(v: &mut [u8]) -> Result<&mut str, Utf8Error> {
     run_utf8_validation(v)?;