From c618c5f36a3260351a09f4b4dc51b2e5d1359fbc Mon Sep 17 00:00:00 2001 From: Ivan Ivaschenko Date: Mon, 9 Nov 2015 17:49:30 +0200 Subject: [PATCH] Doc: Fix broken link on for-loop.html --- src/doc/trpl/dining-philosophers.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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: