Skip to content

Commit dc34ea0

Browse files
committed
Fix merge conflicts.
1 parent d940d54 commit dc34ea0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/librustdoc/clean/inline.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -447,7 +447,7 @@ fn build_module(cx: &DocContext, did: DefId) -> clean::Module {
447447
let def_id = item.def.def_id();
448448
if cx.tcx.sess.cstore.visibility(def_id) == ty::Visibility::Public {
449449
if !visited.insert(def_id) { continue }
450-
if let Some(i) = try_inline(cx, item.def, item.name) {
450+
if let Some(i) = try_inline(cx, item.def, item.ident.name) {
451451
items.extend(i)
452452
}
453453
}

0 commit comments

Comments
 (0)