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
Running rustdoc on the following code results in a documentation that mentions SomeTypeWithLongName instead of SomeType.
SomeTypeWithLongName
SomeType
mod second { pub struct SomeTypeWithLongName; } pub use second::{SomeTypeWithLongName as SomeType};
I tested this on current nightly (rustc 1.11.0-nightly (ad7fe6521 2016-06-23)) and 1.9.0 stable.
rustc 1.11.0-nightly (ad7fe6521 2016-06-23)
(I've seen that there are a couple of issues with reexports in rustdoc already reported, but I haven't found this one.)
The text was updated successfully, but these errors were encountered:
Rollup merge of rust-lang#34479 - ollie27:rustdoc_renamed_reexport_li…
2cbb1b6
…st, r=GuillaumeGomez rustdoc: Fix inlined renamed reexports in import lists Fixes rust-lang#34473
991ddc5
890e3a7
No branches or pull requests
Running rustdoc on the following code results in a documentation that mentions
SomeTypeWithLongName
instead ofSomeType
.I tested this on current nightly (
rustc 1.11.0-nightly (ad7fe6521 2016-06-23)
) and 1.9.0 stable.(I've seen that there are a couple of issues with reexports in rustdoc already reported, but I haven't found this one.)
The text was updated successfully, but these errors were encountered: