about summary refs log tree commit diff
diff options
context:
space:
mode:
authorSteve Klabnik <steve@steveklabnik.com>2015-11-10 10:51:48 -0500
committerSteve Klabnik <steve@steveklabnik.com>2015-11-10 10:51:48 -0500
commitd64195f365ca721413339ea425f087e77892d3cd (patch)
tree94b6c98d0b1bda8834bb47c3616c38873626864a
parenta39daf95f30639bbec33eddfd7532b5af7c5c200 (diff)
parentc618c5f36a3260351a09f4b4dc51b2e5d1359fbc (diff)
downloadrust-d64195f365ca721413339ea425f087e77892d3cd.tar.gz
rust-d64195f365ca721413339ea425f087e77892d3cd.zip
Rollup merge of #29715 - defuz:patch-3, r=alexcrichton
r? @steveklabnik

See #27305
-rw-r--r--src/doc/trpl/dining-philosophers.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/trpl/dining-philosophers.md b/src/doc/trpl/dining-philosophers.md
index 5f66a5b9e29..50d758c3a10 100644
--- a/src/doc/trpl/dining-philosophers.md
+++ b/src/doc/trpl/dining-philosophers.md
@@ -232,7 +232,7 @@ also called a ‘vector’, and it’s a growable array type. We then use a
 [`for`][for] loop to iterate through the vector, getting a reference to each
 philosopher in turn.
 
-[for]: for-loops.html
+[for]: loops.html#for
 
 In the body of the loop, we call `p.eat()`, which is defined above: