-
Notifications
You must be signed in to change notification settings - Fork 479
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix spurious "Package.Package missing" warnings (#1009)
It seems that going from Julia 0.6 to 0.7 the way module bindings are stored in the docs metadata changed from Binding(Mod, :SubMod) to Binding(Mod.SubMod, :SubMod). Documenter, however, still constructs the former Binding objects for modules that are listed just as SubMod in an at-docs block. This fixes the spurious errors that causes when checking for missing docs by explicitly normalizing the module bindings that Documenter creates before it crosschecks them against the bindings in docs metadata.
- Loading branch information
Showing
2 changed files
with
18 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters