about summary refs log tree commit diff
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2015-05-21 17:01:51 +0000
committerbors <bors@rust-lang.org>2015-05-21 17:01:51 +0000
commit7044f4a3944c7b4d1169b040501a44df7f8b2106 (patch)
treedc529ba2f2d6194cfcdc17ecce9406da239d3892
parent59ba55ddbd4cfc1fb2bc627ed1e859000b7304db (diff)
parent4bc8853ceae2aee59f7a53b24462d808043152e5 (diff)
downloadrust-7044f4a3944c7b4d1169b040501a44df7f8b2106.tar.gz
rust-7044f4a3944c7b4d1169b040501a44df7f8b2106.zip
Auto merge of #25601 - ericye16:master, r=steveklabnik
-rw-r--r--src/doc/trpl/the-stack-and-the-heap.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/doc/trpl/the-stack-and-the-heap.md b/src/doc/trpl/the-stack-and-the-heap.md
index c47dbd97893..187ca577aca 100644
--- a/src/doc/trpl/the-stack-and-the-heap.md
+++ b/src/doc/trpl/the-stack-and-the-heap.md
@@ -277,9 +277,9 @@ allocated on the heap:
 | 0       | x    | ?????? |
 
 [drop]: drop.html
-[moving]: We can make the memory live longer by transferring ownership,
-          sometimes called ‘moving out of the box’. More complex examples will
-          be covered later.
+[^moving]: We can make the memory live longer by transferring ownership,
+           sometimes called ‘moving out of the box’. More complex examples will
+           be covered later.
 
 
 And then the stack frame goes away, freeing all of our memory.