about summary refs log tree commit diff
path: root/src/libcore
diff options
context:
space:
mode:
authorAndrew Chin <achin@eminence32.net>2015-10-10 23:32:35 -0400
committerAndrew Chin <achin@eminence32.net>2015-10-10 23:33:43 -0400
commitdce58baff0c4e23a5253f5b2e6df8904a85106de (patch)
treec52ddfd7e2f4f6559781dd527c2b128fb13c24b1 /src/libcore
parent9d3e79ad3728f6723f8e49908696e66a68d7db95 (diff)
downloadrust-dce58baff0c4e23a5253f5b2e6df8904a85106de.tar.gz
rust-dce58baff0c4e23a5253f5b2e6df8904a85106de.zip
Trivial typo fix: from_utrf8 should be from_utf8
Diffstat (limited to 'src/libcore')
-rw-r--r--src/libcore/str/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcore/str/mod.rs b/src/libcore/str/mod.rs
index 57daa95e8c4..8039ac5e17b 100644
--- a/src/libcore/str/mod.rs
+++ b/src/libcore/str/mod.rs
@@ -243,7 +243,7 @@ pub fn from_utf8(v: &[u8]) -> Result<&str, Utf8Error> {
 /// Converts a slice of bytes to a string slice without checking
 /// that the string contains valid UTF-8.
 ///
-/// See the safe version, [`from_utrf8()`][fromutf8], for more.
+/// See the safe version, [`from_utf8()`][fromutf8], for more.
 ///
 /// [fromutf8]: fn.from_utf8.html
 ///