Link to section on references when we use the term prior to defining it

This commit is contained in:
Michael F. Lamb 2016-01-06 16:04:01 -08:00
parent 3557e6941d
commit 936678adb1

View File

@ -192,11 +192,13 @@ documentation][slice].
# `str`
Rusts `str` type is the most primitive string type. As an [unsized type][dst],
its not very useful by itself, but becomes useful when placed behind a reference,
like [`&str`][strings]. As such, well just leave it at that.
its not very useful by itself, but becomes useful when placed behind a
reference, like `&str`. We'll elaborate further when we cover
[Strings][strings] and [references][].
[dst]: unsized-types.html
[strings]: strings.html
[references]: references-and-borrowing.html
You can find more documentation for `str` [in the standard library
documentation][str].