libcore documentation for builtin macros#37325
libcore documentation for builtin macros#37325bors merged 3 commits intorust-lang:masterfrom newpavlov:master
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
stdmacro pages.