Skip to content

Commit c0fd0f0

Browse files
authored
Remove unused argument (#326)
1 parent 2f04595 commit c0fd0f0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/monomial.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ Returns the exponent of the variables in the monomial of the term `t`.
6060
Calling `exponents(x^2*y)` should return `(2, 1)`.
6161
"""
6262
exponents(t::AbstractTerm) = exponents(monomial(t))
63-
exponents(v::AbstractVariable) = (1,)
63+
exponents(::AbstractVariable) = (1,)
6464

6565
"""
6666
degree(t::AbstractTermLike)

0 commit comments

Comments
 (0)