Skip to content

Commit 5fe8282

Browse files
committed
fixed typos
1 parent 73d3da0 commit 5fe8282

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/src/manual/rewrite.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ r2(sin(α+β))
5555
sin(β)*cos(α) + cos(β)*sin(α)
5656
```
5757

58-
Let's say you want to catch the coefficents of a second degree polynomial in z. You can do that with:
58+
Let's say you want to catch the coefficients of a second degree polynomial in z. You can do that with:
5959
```jldoctest rewrite
6060
c2d = @rule ~a + ~b*z + ~c*z^2 => (~a, ~b, ~c)
6161
@@ -78,7 +78,7 @@ c2d(3 + 2z + z^2)
7878
# output
7979
(3, 2, 1)
8080
```
81-
They work like normal slot variables, but if not present take a default value depending on the operation they are in, in the above example `~b = 1`. Currently defslot variables can be definied in:
81+
They work like normal slot variables, but if not present take a default value depending on the operation they are in, in the above example `~b = 1`. Currently defslot variables can be defined in:
8282

8383
Operation | Default value
8484
----------|--------------

0 commit comments

Comments
 (0)