Address more feedback

This commit is contained in:
Brian Anderson
2015-07-14 14:41:50 -07:00
parent 6d5ae6b20d
commit 2881bbad59

View File

@@ -150,9 +150,9 @@
//! //!
//! `str`, a UTF-8 string slice, is a primitive type, and the standard //! `str`, a UTF-8 string slice, is a primitive type, and the standard
//! library defines [many methods for it](primitive.str.html). Rust //! library defines [many methods for it](primitive.str.html). Rust
//! `str`s are typically accessed as immutable references: `&mut //! `str`s are typically accessed as immutable references: `&str`. Use
//! str`. Use the owned `String` type defined in //! the owned `String` type defined in [`string`](string/index.html)
//! [`string`](string/index.html) for building and mutating strings. //! for building and mutating strings.
//! //!
//! For converting to strings use the [`format!`](fmt/index.html) //! For converting to strings use the [`format!`](fmt/index.html)
//! macro, and for converting from strings use the //! macro, and for converting from strings use the