about summary refs log tree commit diff
diff options
context:
space:
mode:
authorManish Goregaokar <manishsmail@gmail.com>2015-03-15 05:14:55 +0530
committerManish Goregaokar <manishsmail@gmail.com>2015-03-15 10:23:45 +0530
commitd66d0b3ac2e45071e40f0e2f3d38aec85cd3c941 (patch)
tree76f70db97242b979242100f8796d39c848e7ff08
parent09e5a7a04ef6500d44efa55c32ee2956f629133f (diff)
parent7130c75e4612f9c91652e4472a66fe7573224df8 (diff)
downloadrust-d66d0b3ac2e45071e40f0e2f3d38aec85cd3c941.tar.gz
rust-d66d0b3ac2e45071e40f0e2f3d38aec85cd3c941.zip
Rollup merge of #23368 - EduardoBautista:fix-closures-chapter, r=steveklabnik
   "body": null,
-rw-r--r--src/doc/trpl/closures.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/trpl/closures.md b/src/doc/trpl/closures.md
index 8cc6be7387c..bf4c2d90357 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