From 82c7282bec967d7f4431e3ebb9240fa9ce8e4051 Mon Sep 17 00:00:00 2001 From: leunggamciu Date: Fri, 15 May 2015 06:25:01 +0800 Subject: [PATCH] trpl: Fix missing internal 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 81280e8920ca9..87877f02fac60 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