Skip to content

Commit 702735a

Browse files
authored
fix typo in show method
This will get a different meaning in 1.7 (ref JuliaLang/julia#33697)
1 parent ef5caf7 commit 702735a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/deaholder.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -578,7 +578,7 @@ function Base.show(io::IO, x::HolderL2DEAModel)
578578
print(io, "Weighted (weakly) Hölder distance function \n")
579579
end
580580

581-
show(io, CoefTable(hcat(eff, slackX, slackY), ["efficiency"; ["slackX$i" for i in 1:m ]; ; ["slackY$i" for i in 1:s ]], dmunames))
581+
show(io, CoefTable(hcat(eff, slackX, slackY), ["efficiency"; ["slackX$i" for i in 1:m ]; ["slackY$i" for i in 1:s ]], dmunames))
582582
end
583583

584584
end

0 commit comments

Comments
 (0)