about summary refs log tree commit diff
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2014-07-26 17:31:16 +0000
committerbors <bors@rust-lang.org>2014-07-26 17:31:16 +0000
commitd4dfb7d84c2af1e3bb7b6efe41c22c4ab17118e8 (patch)
treea3f88266c88ab8d9bb4045814ce3c4085ed9825f
parent7aa407958b8ab2aec16b0182f0103ad92380b5dc (diff)
parentca18c12243589fc3662d9d6b6f75686518994f2b (diff)
auto merge of #16000 : emkay/rust/lifetimes-guide-typo, r=alexcrichton
-rw-r--r--src/doc/guide-lifetimes.md2
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.