We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0a34919 commit fa0021aCopy full SHA for fa0021a
scripts/stats.jl
@@ -29,7 +29,8 @@ function check_exported_docs(mod::Module; only_functions=false)
29
exported_symbols = names(mod, all=false)
30
doc_status = Dict{Symbol,Bool}()
31
for sym in exported_symbols
32
- if only_functions && !isa(getfield(mod, sym), Function)
+ val = getfield(mod, sym)
33
+ if only_functions && !isa(val, Function)
34
continue
35
end
36
doc_status[sym] = Base.Docs.hasdoc(mod, sym)
0 commit comments