Skip to content

Commit 92f74c4

Browse files
committed
Merge pull request #30918 from brson/beta-next
[beta] Fix rustdoc reexports.
2 parents 21b295e + 98cb1b0 commit 92f74c4

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
@@ -454,7 +454,7 @@ fn build_module(cx: &DocContext, tcx: &ty::ctxt,
454454
fill_in(cx, tcx, did, items);
455455
}
456456
cstore::DlDef(def) if item.vis == hir::Public => {
457-
if !visited.insert(def) { return }
457+
if !visited.insert(def) { continue }
458458
match try_inline_def(cx, tcx, def) {
459459
Some(i) => items.extend(i),
460460
None => {}

0 commit comments

Comments
 (0)