Rollup merge of #23368 - EduardoBautista:fix-closures-chapter, r=steveklabnik

"body": null,
This commit is contained in:
Manish Goregaokar 2015-03-15 05:14:55 +05:30
commit d66d0b3ac2

View File

@ -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