Skip to content

Commit 0888fed

Browse files
committed
don't make Experimental public API
1 parent bb268fe commit 0888fed

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/JuliaHub.jl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,8 @@ function _find_public_names()
4444
return filter(names(@__MODULE__; all=true)) do s
4545
# We don't need to check or mark public the main module itself
4646
(s == :JuliaHub) && return false
47-
startswith(string(s), "_") && return false
47+
# The Experimental module (or anything within it) is not public.
48+
(s == :Experimental) && return false
4849
# Internal functions and types, prefixed by _
4950
startswith(string(s), "_") && return false
5051
# Internal macros, prefixed by _

0 commit comments

Comments
 (0)