about summary refs log tree commit diff
path: root/src/doc/trpl
diff options
context:
space:
mode:
authorEric Ye <me@ericye16.com>2015-05-19 07:46:52 -0400
committerEric Ye <me@ericye16.com>2015-05-19 07:46:52 -0400
commit4bc8853ceae2aee59f7a53b24462d808043152e5 (patch)
treedcc9012f182e80a7aa419e69ffd87291561299b5 /src/doc/trpl
parent4daa62a55f906bd7ec7ad265cb23d49d9d0db66a (diff)
downloadrust-4bc8853ceae2aee59f7a53b24462d808043152e5.tar.gz
rust-4bc8853ceae2aee59f7a53b24462d808043152e5.zip
fix footnote link
Diffstat (limited to 'src/doc/trpl')
-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.