fix variable name in tutorial

This commit is contained in:
DJUrsus 2014-07-05 14:05:15 -07:00 committed by Alex Crichton
parent 8cda74c4b5
commit 571f6cf29a

View File

@ -1503,7 +1503,7 @@ reference. We also call this _borrowing_ the local variable
`on_the_stack`, because we are creating an alias: that is, another
route to 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.