Skip to content

Commit

Permalink
fix invalidations (#412)
Browse files Browse the repository at this point in the history
  • Loading branch information
jverzani authored May 31, 2022
1 parent 421fc51 commit c9d344c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/common.jl
Original file line number Diff line number Diff line change
Expand Up @@ -485,7 +485,7 @@ Base.all(pred, p::AbstractPolynomial) = all(pred, values(p))
Test whether any coefficient of an `AbstractPolynomial` satisfies predicate `pred`.
"""
Base.any(pred, p::AbstractPolynomial) = any(pred, values(p))
Base.any(pred::Function, p::AbstractPolynomial) = any(pred, values(p))



Expand Down

2 comments on commit c9d344c

@jverzani
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/61414

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 v3.1.2 -m "<description of version>" c9d344cd14f722e2be7a9ca58c08e987a94ad5ac
git push origin v3.1.2

Please sign in to comment.