Skip to content

Commit aef01b5

Browse files
authored
Fixed a typo ('vector' instead of 'vetor') (#220)
1 parent 6aab185 commit aef01b5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/substitution.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ The allowed substutions are:
9696
* `V => P` where `V` is a tuple or vector of variables and `P` a tuple or vector of polynomials, e.g. `(x, y) => (y, x)` or `(y, x) => (2, 1)`.
9797
9898
The order of the variables is lexicographic with the name with TypedPolynomials and by order of creation with DynamicPolynomials.
99-
Since there is no guarantee on the order of the variables, substitution directly with a tuple or a vetor is not allowed.
99+
Since there is no guarantee on the order of the variables, substitution directly with a tuple or a vector is not allowed.
100100
You can use `p(variables(p) => (1, 2))` instead if you are sure of the order of the variables (e.g. the name order matches the creation order).
101101
102102
### Examples

0 commit comments

Comments
 (0)