Skip to content

Commit 76df602

Browse files
authored
REPL: fix typo and potential UndefVarError (#58761)
Detected by the new LS diagnostics:)
1 parent 787e0d9 commit 76df602

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

stdlib/REPL/src/REPL.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1866,7 +1866,7 @@ function create_global_out!(mod)
18661866
end
18671867
return out
18681868
end
1869-
return getglobal(mod, Out)
1869+
return getglobal(mod, :Out)
18701870
end
18711871

18721872
function capture_result(n::Ref{Int}, @nospecialize(x))

0 commit comments

Comments
 (0)