-
Notifications
You must be signed in to change notification settings - Fork 12.7k
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
rustdoc: Note why rustdoc::html::markdown
is public
#81492
Conversation
The job Click to see the possible cause of the failure (guessed by this bot)
|
This doctest is failing as a result of this change:
Should I just mark it as |
It certainly doesn't seem to test anything, so I think you should. |
Yes, you can ignore it. |
c81bffb
to
2644d4d
Compare
This comment has been minimized.
This comment has been minimized.
2644d4d
to
29b048f
Compare
This comment has been minimized.
This comment has been minimized.
It turns out |
367a31f
to
a5841e6
Compare
Almost all of the modules are crate-private, except for `rustdoc::json::types`, which I believe is intended to be for public use; and `rustdoc::html::markdown`, which is used externally by the error-index generator and so has to be public.
a5841e6
to
82010e8
Compare
rustdoc::html::markdown
is public
At this point, I'm no longer changing the visibility of any the modules, so I updated the commit message and PR title and description :) |
Well, more doc is always a good thing, so thanks! @bors: r+ rollup |
📌 Commit 82010e8 has been approved by |
…=GuillaumeGomez rustdoc: Note why `rustdoc::html::markdown` is public Almost all of the modules are crate-private, except for `rustdoc::json::types`, which I believe is intended to be for public use; and `rustdoc::html::markdown`, which is used externally by the error-index generator and so has to be public. r? `@GuillaumeGomez`
…as-schievink Rollup of 11 pull requests Successful merges: - rust-lang#80629 (Add lint for 2229 migrations) - rust-lang#81022 (Add Frames Iterator for Backtrace) - rust-lang#81481 (move some tests) - rust-lang#81485 (Add some tests for associated-type-bounds issues) - rust-lang#81492 (rustdoc: Note why `rustdoc::html::markdown` is public) - rust-lang#81577 (const_evaluatable: consider sub-expressions to be evaluatable) - rust-lang#81599 (Implement `TrustedLen` for `Fuse<I: TrustedLen>`) - rust-lang#81608 (Improve handling of spans around macro result parse errors) - rust-lang#81609 (Remove the remains of query categories) - rust-lang#81630 (Fix overflowing text on mobile when sidebar is displayed) - rust-lang#81631 (Remove unneeded `mut` variable) Failed merges: r? `@ghost` `@rustbot` modify labels: rollup
Almost all of the modules are crate-private, except for
rustdoc::json::types
, which I believe is intended to be for publicuse; and
rustdoc::html::markdown
, which is used externally by theerror-index generator and so has to be public.
r? @GuillaumeGomez