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

5 comments on commit be07cab

@bors
Copy link
Contributor

@bors bors commented on be07cab Apr 4, 2014

Choose a reason for hiding this comment

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

saw approval from cmr
at ckendell@be07cab

@bors
Copy link
Contributor

@bors bors commented on be07cab Apr 4, 2014

Choose a reason for hiding this comment

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

merging ckendell/rust/remove_managed_pointers_from_tutorial = be07cab into auto

@bors
Copy link
Contributor

@bors bors commented on be07cab Apr 4, 2014

Choose a reason for hiding this comment

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

ckendell/rust/remove_managed_pointers_from_tutorial = be07cab merged ok, testing candidate = 46e6194

@bors
Copy link
Contributor

@bors bors commented on be07cab Apr 4, 2014

Choose a reason for hiding this comment

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

@bors
Copy link
Contributor

@bors bors commented on be07cab Apr 4, 2014

Choose a reason for hiding this comment

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

fast-forwarding master to auto = 46e6194

Please sign in to comment.