Skip to content

Commit

Permalink
Address more feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
brson committed Jul 14, 2015
1 parent 6d5ae6b commit 2881bba
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/libstd/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 2881bba

Please sign in to comment.