diff options
| author | Christopher Kendell <ckendell@outlook.com> | 2014-04-03 15:48:32 -0700 |
|---|---|---|
| committer | Christopher Kendell <ckendell@outlook.com> | 2014-04-03 15:48:32 -0700 |
| commit | be07cab2cfa224e13f48e9f5c4c5d8e9db75e1f3 (patch) | |
| tree | a28068644048e18a8f16fb5ec47a9220ad95a8dc /src/doc/tutorial.md | |
| parent | 3137cd5af651de95ce73659856716bf04e59688f (diff) | |
| download | rust-be07cab2cfa224e13f48e9f5c4c5d8e9db75e1f3.tar.gz rust-be07cab2cfa224e13f48e9f5c4c5d8e9db75e1f3.zip | |
Removed all references to managed closures.
Diffstat (limited to 'src/doc/tutorial.md')
| -rw-r--r-- | src/doc/tutorial.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/doc/tutorial.md b/src/doc/tutorial.md index f8520919348..9eb004ec8ef 100644 --- a/src/doc/tutorial.md +++ b/src/doc/tutorial.md @@ -1774,8 +1774,8 @@ pervasively in Rust code. Owned closures, written `proc`, 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 +processes. They copy the values they close over, +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]. @@ -2087,7 +2087,7 @@ and may not be overridden: * `Send` - Sendable types. Types are sendable -unless they contain managed closures or references. +unless they contain references. * `Share` - Types that are *threadsafe* These are types that are safe to be used across several threads with access to |
