about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorBrian Anderson <banderson@mozilla.com>2015-07-14 14:41:50 -0700
committerBrian Anderson <banderson@mozilla.com>2015-07-14 14:41:50 -0700
commit2881bbad59633e77a26c60dcc38f5206bd79a5f5 (patch)
treee788d1236d5842349ce94fa16f86f5baceba30db /src/libstd
parent6d5ae6b20dd86de5d65cfcac28664357b6d5d953 (diff)
downloadrust-2881bbad59633e77a26c60dcc38f5206bd79a5f5.tar.gz
rust-2881bbad59633e77a26c60dcc38f5206bd79a5f5.zip
Address more feedback
Diffstat (limited to 'src/libstd')
-rw-r--r--src/libstd/lib.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/libstd/lib.rs b/src/libstd/lib.rs
index 2bb914f2095..1146ea0e0d8 100644
--- a/src/libstd/lib.rs
+++ b/src/libstd/lib.rs
@@ -150,9 +150,9 @@
 //!
 //! `str`, a UTF-8 string slice, is a primitive type, and the standard
 //! library defines [many methods for it](primitive.str.html). Rust
-//! `str`s are typically accessed as immutable references: `&mut
-//! str`. Use the owned `String` type defined in
-//! [`string`](string/index.html) for building and mutating strings.
+//! `str`s are typically accessed as immutable references: `&str`. Use
+//! the owned `String` type defined in [`string`](string/index.html)
+//! for building and mutating strings.
 //!
 //! For converting to strings use the [`format!`](fmt/index.html)
 //! macro, and for converting from strings use the