Skip to content

Commit

Permalink
fix typo in show method
Browse files Browse the repository at this point in the history
This will get a different meaning in 1.7 (ref JuliaLang/julia#33697)
  • Loading branch information
simeonschaub authored May 21, 2021
1 parent ef5caf7 commit 702735a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/deaholder.jl
Original file line number Diff line number Diff line change
Expand Up @@ -578,7 +578,7 @@ function Base.show(io::IO, x::HolderL2DEAModel)
print(io, "Weighted (weakly) Hölder distance function \n")
end

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

end
Expand Down

0 comments on commit 702735a

Please sign in to comment.