From 60d0cbed06628f9e883834c12a8c11e359e4e852 Mon Sep 17 00:00:00 2001 From: Huon Wilson Date: Thu, 19 Sep 2013 22:37:30 +1000 Subject: [PATCH] Fix broken rustpkg link in the tutorial. Fixes #9324. --- doc/tutorial.md | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/doc/tutorial.md b/doc/tutorial.md index d9b55ba4d9565..bbc76e2aafdb3 100644 --- a/doc/tutorial.md +++ b/doc/tutorial.md @@ -2977,9 +2977,9 @@ tutorials on individual topics. * [Tasks and communication][tasks] * [Macros][macros] * [The foreign function interface][ffi] -* [Containers and iterators](tutorial-container.html) -* [Error-handling and Conditions](tutorial-conditions.html) -* [Packaging up Rust code](rustpkg) +* [Containers and iterators][container] +* [Error-handling and Conditions][conditions] +* [Packaging up Rust code][rustpkg] There is further documentation on the [wiki], however those tend to be even more out of date as this document. @@ -2987,7 +2987,8 @@ There is further documentation on the [wiki], however those tend to be even more [tasks]: tutorial-tasks.html [macros]: tutorial-macros.html [ffi]: tutorial-ffi.html +[container]: tutorial-container.html +[conditions]: tutorial-conditions.html [rustpkg]: tutorial-rustpkg.html [wiki]: https://github.com/mozilla/rust/wiki/Docs -