Skip to content

Commit 9e8bcd4

Browse files
committed
Fix missing std.logger.core module in the navigation tree.
The default version of "lookup" will lookup a symbol in ancestor scopes if it isn't found within the main scope, matching the "core." top level package in this particular case.
1 parent 6ad485d commit 9e8bcd4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dpl-docs/views/ddox.inc.module-tree.dt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
span Package members
1818

1919
- foreach(m; pack.modules)
20-
- if (pack.lookup!Package(m.name))
20+
- if (pack.lookup!Package(m.name, false))
2121
- continue;
2222
li
2323
a.module(href="#{info.linkTo(m)}", class='#{info.node is m || m.isAncestorOf(info.node) ? "selected" : ""}')

0 commit comments

Comments
 (0)