We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 29c1647 commit 674b38fCopy full SHA for 674b38f
src/monomial.jl
@@ -3,7 +3,7 @@
3
4
Return the type of the monomials of `p`.
5
6
- term_type(::Type{PT}) where PT<:AbstractPolynomialLike
+ monomial_type(::Type{PT}) where PT<:AbstractPolynomialLike
7
8
Returns the type of the monomials of a polynomial of type `PT`.
9
"""
@@ -112,7 +112,7 @@ Returns an iterator over the powers of the monomial of `t`.
112
113
### Examples
114
115
-Calling `powers(3x^4*y) should return `((x, 4), (y, 1))`.
+Calling `powers(3x^4*y)` should return `((x, 4), (y, 1))`.
116
117
powers(t::AbstractTermLike) = _zip(variables(t), exponents(t))
118
0 commit comments