We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3557e69 commit 936678aCopy full SHA for 936678a
src/doc/book/primitive-types.md
@@ -192,11 +192,13 @@ documentation][slice].
192
# `str`
193
194
Rust’s `str` type is the most primitive string type. As an [unsized type][dst],
195
-it’s not very useful by itself, but becomes useful when placed behind a reference,
196
-like [`&str`][strings]. As such, we’ll just leave it at that.
+it’s not very useful by itself, but becomes useful when placed behind a
+reference, like `&str`. We'll elaborate further when we cover
197
+[Strings][strings] and [references][].
198
199
[dst]: unsized-types.html
200
[strings]: strings.html
201
+[references]: references-and-borrowing.html
202
203
You can find more documentation for `str` [in the standard library
204
documentation][str].
0 commit comments