Uh oh!
There was an error while loading. Please reload this page.
rust book: syntax simplications from (autoderef?) - #23445
Conversation
Not sure what the technical underpinnings are, but Box and Rc seem to work fine with a simple & now. This patch just points out areas that could be fixed, but does not suggest a final wording.
rust-highfive
commented
Mar 17, 2015
Thanks for the pull request, and welcome! The Rust team is excited to review your changes, and you should hear from @huonw (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. 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 CONTRIBUTING.md for more information. |
These two borrowing examples were confusing/misleading. This changes it to more clearly show how you _can_ borrow a box, and also uses & instead of &*.
bors
commented
Mar 28, 2015
☔ The latest upstream changes (presumably #23796) made this pull request unmergeable. Please resolve the merge conflicts. |
Not sure what the technical underpinnings are, but Box and Rc seem to
work fine with a simple & now.
This patch just points out areas that could be fixed, but does not
suggest a final wording.