From f20b030f02b1124cc3ff76cc906baba6588738e1 Mon Sep 17 00:00:00 2001 From: smt923 Date: Sun, 10 Sep 2017 14:08:20 +0100 Subject: [PATCH] Fix trailing whitespace --- src/libcore/str/mod.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/libcore/str/mod.rs b/src/libcore/str/mod.rs index f0dde8fc342d..a9e72d6a4a8c 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)?;