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.
2 parents 703c742 + 0144695 commit 1c14374Copy full SHA for 1c14374
base/show.jl
@@ -8,7 +8,7 @@ show(io, x) = ccall(:jl_show_any, Void, (Any, Any,), io::IOStream, x)
8
showcompact(io, x) = show(io, x)
9
showcompact(x) = showcompact(OUTPUT_STREAM::IOStream, x)
10
11
-show(io, s::Symbol) = print(io, s)
+show(io, s::Symbol) = show_indented(io, s)
12
show(io, tn::TypeName) = show(io, tn.name)
13
show(io, ::Nothing) = print(io, "nothing")
14
show(io, b::Bool) = print(io, b ? "true" : "false")
0 commit comments