Skip to content

Commit

Permalink
better show message
Browse files Browse the repository at this point in the history
  • Loading branch information
stevengj committed Sep 11, 2021
1 parent 6d309d9 commit ea717d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/FastChebInterp.jl
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ struct ChebPoly{N,T,Td<:Real}
end

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

3 comments on commit ea717d6

@stevengj
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@stevengj
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/44692

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v1.0.0 -m "<description of version>" ea717d61ef864d55d59a8e07f617dcfd55a8ab5b
git push origin v1.0.0

Please sign in to comment.