Add how to use brace bracket syntax#1097
Add how to use brace bracket syntax#1097marioidival merged 3 commits intorust-lang:masterfrom lf94:patch-1
Conversation
|
Thanks for the pull request, and welcome! The Rust team is excited to review your changes, and you should hear from @steveklabnik (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. |
src/mod/use.md
Outdated
| } | ||
| ``` | ||
|
|
||
| Alternatively you can use `as` syntax too: |
There was a problem hiding this comment.
It's possible to use as within an import group:
use deeply::nested::{
my_first_function,
my_second_function as something_else,
};So since this isn't an either-or scenario, "Alternatively" doesn't seem like the right word here. How about:
You can use the
askeyword to bind imports to a different name:
|
This can't ever build, as the crate won't exist, and so should be marked as |
|
Sorry @steveklabnik I'm not sure what I'm supposed to do. I can't find any documentation on "ignore crate", only a literal crate called "ignore" keeps coming up... 😢 |
|
@lf94 no worries! I mean https://doc.rust-lang.org/rustdoc/documentation-tests.html#attributes does that make sense? |
|
I hope that did it! |
|
It looks good to me! Let's see what Travis says.. |
|
@steveklabnik travis says SGTM, so I merge this! Thank you @lf94 |
Self-explanatory.