From 41bce91cb871ba90caf7d3e56243141dd3390bca Mon Sep 17 00:00:00 2001 From: Tim Chevalier Date: Thu, 11 Oct 2012 14:10:05 -0700 Subject: [PATCH] Fix tutorial link to tasks Closes #3715 --- doc/tutorial.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/doc/tutorial.md b/doc/tutorial.md index ae88cda8d8e9..04fd2aae3f7d 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