We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Example:
mod priv_mod { pub struct Foo; } #[doc(hidden)] pub use priv_mod::Foo;
With this code, we get:
error: missing documentation for a struct
Whereas we shouldn't since Foo is hidden.
Foo
The text was updated successfully, but these errors were encountered:
Add test for rust-lang#108570.
aa7e470
Update UI test with new output.
GuillaumeGomez
Successfully merging a pull request may close this issue.
Example:
With this code, we get:
Whereas we shouldn't since
Foo
is hidden.The text was updated successfully, but these errors were encountered: