Skip to content

Commit 0dcbd29

Browse files
authored
Merge pull request #281 from adamslc/mul_docfix
Update Mul docstring
2 parents e8cccfa + e2c7a30 commit 0dcbd29

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/types.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -691,9 +691,9 @@ Represents coeff * (key1 ^ val1) * (key2 ^ val2) * ....
691691
where coeff is a <:Number and keys and values come from the dictionary (`dict`).
692692
where `coeff` and the vals are `<:Number` and keys are symbolic.
693693
694-
- `symtype(::Add)` -- returns `T`.
695-
- `operation(::Add)` -- returns `*`.
696-
- `arguments(::Add)` -- returns a totally ordered vector of arguments. i.e.
694+
- `symtype(::Mul)` -- returns `T`.
695+
- `operation(::Mul)` -- returns `*`.
696+
- `arguments(::Mul)` -- returns a totally ordered vector of arguments. i.e.
697697
`[coeff, keyM^valM, keyN^valN...]`
698698
"""
699699
struct Mul{X, T<:Number, D, M} <: Symbolic{X}

0 commit comments

Comments
 (0)