Skip to content

Commit 04d65f8

Browse files
committed
edits per review
1 parent 8b3dbf6 commit 04d65f8

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

files/en-us/web/api/dommatrix/multiplyself/index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,13 @@ To multiply a matrix without mutating it, see {{domxref("DOMMatrixReadOnly.multi
1515
## Syntax
1616

1717
```js-nolint
18-
DOMMatrix.multiplySelf( )
19-
DOMMatrix.multiplySelf( otherMatrix )
18+
DOMMatrix.multiplySelf()
19+
DOMMatrix.multiplySelf(otherMatrix)
2020
```
2121

2222
### Parameters
2323

24-
- `otherMatrix`
24+
- `otherMatrix` {{optional_inline}}
2525
- : The [`DOMMatrix`](/en-US/docs/Web/API/DOMMatrix) multiplier.
2626

2727
### Return value

files/en-us/web/api/dommatrix/premultiplyself/index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@ The **`preMultiplySelf()`** method of the {{domxref("DOMMatrix")}} interface mod
1313
## Syntax
1414

1515
```js-nolint
16-
DOMMatrix.preMultiplySelf( )
17-
DOMMatrix.preMultiplySelf( otherMatrix )
16+
DOMMatrix.preMultiplySelf()
17+
DOMMatrix.preMultiplySelf(otherMatrix)
1818
```
1919

2020
### Parameters
2121

22-
- `otherMatrix`
22+
- `otherMatrix` {{optional_inline}}
2323
- : The [`DOMMatrix`](/en-US/docs/Web/API/DOMMatrix) multiplier.
2424

2525
### Return value

files/en-us/web/api/dommatrixreadonly/multiply/index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,13 @@ To mutate the matrix as you multiply it, see {{domxref("DOMMatrix.multiplySelf()
1515
## Syntax
1616

1717
```js-nolint
18-
DOMMatrixReadOnly.multiply( )
19-
DOMMatrixReadOnly.multiply( otherMatrix )
18+
DOMMatrixReadOnly.multiply()
19+
DOMMatrixReadOnly.multiply(otherMatrix)
2020
```
2121

2222
### Parameters
2323

24-
- `otherMatrix`
24+
- `otherMatrix` {{optional_inline}}
2525
- : The [`DOMMatrix`](/en-US/docs/Web/API/DOMMatrix) multiplier.
2626

2727
### Return value

0 commit comments

Comments
 (0)