Skip to content

Commit 2881bba

Browse files
committed
Address more feedback
1 parent 6d5ae6b commit 2881bba

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/libstd/lib.rs

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

0 commit comments

Comments
 (0)