Uh oh!
There was an error while loading. Please reload this page.
Improve arc doc, fixing #32905 - #34733
Conversation
rust-highfive
commented
Jul 9, 2016
Thanks for the pull request, and welcome! The Rust team is excited to review your changes, and you should hear from @brson (or someone else) soon. If any changes to this PR are deemed necessary, please add them as extra commits. This ensures that the reviewer can see what has changed since they last reviewed the code. Due to the way GitHub handles out-of-date commits, this should also make it reasonably obvious what issues have or haven't been addressed. Large or tricky changes may require several passes of review and changes. Please see the contribution instructions for more information. |
There was a problem hiding this comment.
Not clear what does pipes really mean here, any comments?
There was a problem hiding this comment.
I think it's referring to channels, but we can probably just remove the whole sentence.
There was a problem hiding this comment.
Removing looks good to me. It might be a distraction I suppose.
izgzhen
commented
Jul 9, 2016
Note that I marked the |
brson
commented
Jul 11, 2016
lgtm when @steveklabnik's comments addressed |
| /// increase the reference counter. | ||
| /// In this example, a large vector of data will be shared by several threads. First we | ||
| /// wrap it with a `Arc::new` and then clone the `Arc<T>` reference for every thread (which will | ||
| /// increase the reference count atomically). |
steveklabnik
commented
Jul 12, 2016
Looks good, thanks a ton! @bors: r+ rollup |
bors
commented
Jul 12, 2016
📌 Commit a6ff05c has been approved by |
…eveklabnik Improve arc doc, fixing rust-lang#32905 As issue rust-lang#32905 detailed, I moved part of the module doc to the struct doc, and fixed some small places in the `alloc::arc`.
As issue #32905 detailed, I moved part of the module doc to the struct doc, and fixed some small places in the
alloc::arc.