Skip to content

Commit

Permalink
Update DocumenterReference.jl
Browse files Browse the repository at this point in the history
  • Loading branch information
odow authored Mar 13, 2024
1 parent 61cd974 commit 4ec427e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/DocumenterReference.jl
Original file line number Diff line number Diff line change
Expand Up @@ -131,8 +131,8 @@ end
function _iterate_over_symbols(f, config)
current_module = config.current_module
modules = get(config.modules, config.current_module, Any[])
key_types = sort(_exported_symbols(current_module); by = config.sort_by)
for (key, type) in vcat(key_types, modules)
key_types = vcat(_exported_symbols(current_module), modules)
for (key, type) in sort!(key_types; by = config.sort_by)
if key isa Symbol
doc = Base.Docs.doc(Base.Docs.Binding(current_module, key))
if occursin("No documentation found.", string(doc))
Expand Down

0 comments on commit 4ec427e

Please sign in to comment.