We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d940d54 commit dc34ea0Copy full SHA for dc34ea0
src/librustdoc/clean/inline.rs
@@ -447,7 +447,7 @@ fn build_module(cx: &DocContext, did: DefId) -> clean::Module {
447
let def_id = item.def.def_id();
448
if cx.tcx.sess.cstore.visibility(def_id) == ty::Visibility::Public {
449
if !visited.insert(def_id) { continue }
450
- if let Some(i) = try_inline(cx, item.def, item.name) {
+ if let Some(i) = try_inline(cx, item.def, item.ident.name) {
451
items.extend(i)
452
}
453
0 commit comments