1
Fork 0

auto merge of #16000 : emkay/rust/lifetimes-guide-typo, r=alexcrichton

This commit is contained in:
bors 2014-07-26 17:31:16 +00:00
commit d4dfb7d84c

View file

@ -77,7 +77,7 @@ value. We also call this _borrowing_ the local variable
`on_the_stack`, because we have created an alias: that is, another
name for the same data.
Likewise, in the case of `owned_box`,
Likewise, in the case of `on_the_heap`,
the `&` operator is used in conjunction with the `*` operator
to take a reference to the contents of the box.