From a49951732890b6d72d49ae97d480fd3f610fb56d Mon Sep 17 00:00:00 2001 From: parir Date: Thu, 14 May 2015 15:39:38 +0200 Subject: [PATCH] Add some missing links. --- src/doc/trpl/dining-philosophers.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/doc/trpl/dining-philosophers.md b/src/doc/trpl/dining-philosophers.md index 81280e8920ca..87877f02fac6 100644 --- a/src/doc/trpl/dining-philosophers.md +++ b/src/doc/trpl/dining-philosophers.md @@ -73,6 +73,9 @@ a name is all we need. We choose the [`String`][string] type for the name, rather than `&str`. Generally speaking, working with a type which owns its data is easier than working with one that uses references. +[struct]: structs.html +[string]: strings.html + Let’s continue: ```rust