Skip to content

Commit

Permalink
Fix missing newline in ambiguity error
Browse files Browse the repository at this point in the history
  • Loading branch information
Seelengrab committed Jun 9, 2022
1 parent e9a8dda commit 5f14da8
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions base/errorshow.jl
Original file line number Diff line number Diff line change
Expand Up @@ -347,6 +347,7 @@ function showerror_ambiguous(io::IO, meths, f, args)
for m in meths
print(io, " ")
show(io, m; digit_align_width=-2)
println(io)
sigfix = typeintersect(m.sig, sigfix)
end
if isa(unwrap_unionall(sigfix), DataType) && sigfix <: Tuple
Expand Down

0 comments on commit 5f14da8

Please sign in to comment.