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 bb268fe commit 0888fedCopy full SHA for 0888fed
src/JuliaHub.jl
@@ -44,7 +44,8 @@ function _find_public_names()
44
return filter(names(@__MODULE__; all=true)) do s
45
# We don't need to check or mark public the main module itself
46
(s == :JuliaHub) && return false
47
- startswith(string(s), "_") && return false
+ # The Experimental module (or anything within it) is not public.
48
+ (s == :Experimental) && return false
49
# Internal functions and types, prefixed by _
50
startswith(string(s), "_") && return false
51
# Internal macros, prefixed by _
0 commit comments