Skip to content

Commit ea717d6

Browse files
committed
better show message
1 parent 6d309d9 commit ea717d6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/FastChebInterp.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ struct ChebPoly{N,T,Td<:Real}
4141
end
4242

4343
function Base.show(io::IO, c::ChebPoly)
44-
print(io, "Chebyshev order ", map(i->i-1,size(c.coefs)), " interpolator on ",
44+
print(io, "Chebyshev order ", map(i->i-1,size(c.coefs)), " polynomial on ",
4545
'[', c.lb[1], ',', c.ub[1], ']')
4646
for i = 2:length(c.lb)
4747
print(io, " × [", c.lb[i], ',', c.ub[i], ']')

0 commit comments

Comments
 (0)