diff options
| author | bors <bors@rust-lang.org> | 2014-07-26 17:31:16 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2014-07-26 17:31:16 +0000 |
| commit | d4dfb7d84c2af1e3bb7b6efe41c22c4ab17118e8 (patch) | |
| tree | a3f88266c88ab8d9bb4045814ce3c4085ed9825f | |
| parent | 7aa407958b8ab2aec16b0182f0103ad92380b5dc (diff) | |
| parent | ca18c12243589fc3662d9d6b6f75686518994f2b (diff) | |
auto merge of #16000 : emkay/rust/lifetimes-guide-typo, r=alexcrichton
| -rw-r--r-- | src/doc/guide-lifetimes.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/guide-lifetimes.md b/src/doc/guide-lifetimes.md index a6cc9cd0bc2..b7e8c8b0d48 100644 --- a/src/doc/guide-lifetimes.md +++ b/src/doc/guide-lifetimes.md @@ -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. |
