From 7130c75e4612f9c91652e4472a66fe7573224df8 Mon Sep 17 00:00:00 2001 From: Eduardo Bautista Date: Sat, 14 Mar 2015 14:05:59 -0600 Subject: [PATCH] Concurrency is now in the "Concurrency" chapter --- src/doc/trpl/closures.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/doc/trpl/closures.md b/src/doc/trpl/closures.md index 8cc6be7387ca1..bf4c2d903570b 100644 --- a/src/doc/trpl/closures.md +++ b/src/doc/trpl/closures.md @@ -68,7 +68,7 @@ is that a moving closure always takes ownership of all variables that it uses. Ordinary closures, in contrast, just create a reference into the enclosing stack frame. Moving closures are most useful with Rust's concurrency features, and so we'll just leave it at this for -now. We'll talk about them more in the "Threads" section of the guide. +now. We'll talk about them more in the "Concurrency" chapter of the book. ## Accepting closures as arguments