Skip to content

Commit

Permalink
Removed all references to managed closures.
Browse files Browse the repository at this point in the history
  • Loading branch information
ckendell committed Apr 3, 2014
1 parent 3137cd5 commit be07cab
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/doc/tutorial.md
Expand Up @@ -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].

Expand Down Expand Up @@ -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
Expand Down

1 comment on commit be07cab

@emberian
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

r+

Please sign in to comment.