Rollup merge of #24468 - brettcannon:patch-2, r=alexcrichton
Link spanned a line and was missing the actual link target.
This commit is contained in:
commit
68648fe0da
|
@ -104,10 +104,10 @@ We’ll get to the details eventually, you’ll just have to trust us for now.
|
||||||
|
|
||||||
Next, `"Hello, world!"` is a ‘string’. Strings are a surprisingly complicated
|
Next, `"Hello, world!"` is a ‘string’. Strings are a surprisingly complicated
|
||||||
topic in a systems programming language, and this is a ‘statically allocated’
|
topic in a systems programming language, and this is a ‘statically allocated’
|
||||||
string. If you want to read further about allocation, check out [the stack and
|
string. If you want to read further about allocation, check out
|
||||||
the heap], but you don’t need to right now if you don’t want to. We pass this
|
[the stack and the heap][allocation], but you don’t need to right now if you
|
||||||
string as an argument to `println!`, which prints the string to the screen.
|
don’t want to. We pass this string as an argument to `println!`, which prints the
|
||||||
Easy enough!
|
string to the screen. Easy enough!
|
||||||
|
|
||||||
[allocation]: the-stack-and-the-heap.html
|
[allocation]: the-stack-and-the-heap.html
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue