-
Notifications
You must be signed in to change notification settings - Fork 13k
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
libcore documentation for builtin macros #37325
Conversation
Thanks for the pull request, and welcome! The Rust team is excited to review your changes, and you should hear from @aturon (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. |
@bors: delegate=frewsxcv |
✌️ @frewsxcv can now approve this pull request |
Is it not possible to move the macros currently in |
I mentioned it in the OP. Naively moving I am unable to fully analyze why this error happens, but my guess is what when we trying to compile docs and use |
If you want to try to fix |
Thanks! @bors r+ rollup |
📌 Commit 34576da has been approved by |
libcore documentation for builtin macros Fixes: #36272 Additionally I've edited docstring for `include!` a bit. (related PR #36404) Unfortunately it seems there is no sane way to reexport empty macros definitions for their docstrings. To avoid copying the whole documentation for builtin macros I've only copied description and added links to `std` macro pages.
Sadly this broke cross-crate Simplest fix would be to just remove the |
@eddyb |
@newpav Sorry it didn't get linked. There's already a fix up, #37727. |
Fixes: #36272
Additionally I've edited docstring for
include!
a bit. (related PR #36404)Unfortunately it seems there is no sane way to reexport empty macros definitions for their docstrings. To avoid copying the whole documentation for builtin macros I've only copied description and added links to
std
macro pages.