-
Notifications
You must be signed in to change notification settings - Fork 1.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add how to use brace bracket syntax #1097
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.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
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
as
keyword 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.