Skip to content

Commit

Permalink
edits per review
Browse files Browse the repository at this point in the history
  • Loading branch information
estelle committed Jan 10, 2025
1 parent 8b3dbf6 commit 04d65f8
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions files/en-us/web/api/dommatrix/multiplyself/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@ To multiply a matrix without mutating it, see {{domxref("DOMMatrixReadOnly.multi
## Syntax

```js-nolint
DOMMatrix.multiplySelf( )
DOMMatrix.multiplySelf( otherMatrix )
DOMMatrix.multiplySelf()
DOMMatrix.multiplySelf(otherMatrix)
```

### Parameters

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

### Return value
Expand Down
6 changes: 3 additions & 3 deletions files/en-us/web/api/dommatrix/premultiplyself/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@ The **`preMultiplySelf()`** method of the {{domxref("DOMMatrix")}} interface mod
## Syntax

```js-nolint
DOMMatrix.preMultiplySelf( )
DOMMatrix.preMultiplySelf( otherMatrix )
DOMMatrix.preMultiplySelf()
DOMMatrix.preMultiplySelf(otherMatrix)
```

### Parameters

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

### Return value
Expand Down
6 changes: 3 additions & 3 deletions files/en-us/web/api/dommatrixreadonly/multiply/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@ To mutate the matrix as you multiply it, see {{domxref("DOMMatrix.multiplySelf()
## Syntax

```js-nolint
DOMMatrixReadOnly.multiply( )
DOMMatrixReadOnly.multiply( otherMatrix )
DOMMatrixReadOnly.multiply()
DOMMatrixReadOnly.multiply(otherMatrix)
```

### Parameters

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

### Return value
Expand Down

0 comments on commit 04d65f8

Please sign in to comment.