about summary refs log tree commit diff
diff options
context:
space:
mode:
authorTim Chevalier <chevalier@alum.wellesley.edu>2012-10-11 14:10:05 -0700
committerTim Chevalier <chevalier@alum.wellesley.edu>2012-10-11 14:17:59 -0700
commit41bce91cb871ba90caf7d3e56243141dd3390bca (patch)
treeb93b1902b08b68bf861e0a6570c2ed644f594b86
parentc87ff5e29e3192db39a6c35662165e644cde7b9d (diff)
Fix tutorial link to tasks
Closes #3715
-rw-r--r--doc/tutorial.md4
1 files changed, 3 insertions, 1 deletions
diff --git a/doc/tutorial.md b/doc/tutorial.md
index ae88cda8d8e..04fd2aae3f7 100644
--- a/doc/tutorial.md
+++ b/doc/tutorial.md
@@ -1630,7 +1630,9 @@ hold on to things that can safely be sent between
 processes. They copy the values they close over, much like managed
 closures, but they also own them: that is, no other code can access
 them. Owned closures are used in concurrent code, particularly
-for spawning [tasks](#tasks).
+for spawning [tasks][tasks].
+
+[tasks]: tutorial-tasks.html
 
 ## Closure compatibility