You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
nagisa opened this issue
Jul 19, 2015
· 2 comments
Labels
A-docsArea: Documentation for any part of the project, including the compiler, standard library, and toolsP-lowLow priorityT-rustdocRelevant to the rustdoc team, which will review and decide on the PR/issue.
extern crate innercrate; //defines only one public item `from_inner_crate`
pub use inner::{inner_fn, from_inner_crate};
/// Top level documentation
pub fn top_level(){}
pub mod inner {
pub use innercrate::from_inner_crate;
/// Defined inside inner module
pub fn inner_fn(){}
}
Documentation renders from_inner_crate as if it was defined at the top level of crate rather than showing it as an reexport from inner module.
The text was updated successfully, but these errors were encountered:
brson
added
A-docs
Area: Documentation for any part of the project, including the compiler, standard library, and tools
T-tools
P-low
Low priority
labels
Jan 26, 2017
The behavior described in the op is intended. rustdoc does have an option not to inline reexports. If there are missing features still please open a new ticket with further clarification.
A-docsArea: Documentation for any part of the project, including the compiler, standard library, and toolsP-lowLow priorityT-rustdocRelevant to the rustdoc team, which will review and decide on the PR/issue.
Consider
Documentation renders from_inner_crate as if it was defined at the top level of crate rather than showing it as an reexport from inner module.
The text was updated successfully, but these errors were encountered: