Skip to content

Commit

Permalink
Fix punctuation (mdn#20290)
Browse files Browse the repository at this point in the history
  • Loading branch information
de-oz authored and goshdarnheck committed Sep 7, 2022
1 parent 03f6d41 commit f0290d2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions files/en-us/web/api/domrect/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,13 +41,13 @@ _`DOMRect` inherits properties from its parent, {{domxref("DOMRectReadOnly")}}.
- {{domxref("DOMRectReadOnly.height")}}
- : The height of the `DOMRect`.
- {{domxref("DOMRectReadOnly.top")}}
- : Returns the top coordinate value of the `DOMRect` (has the same value as `y`, or `y + height` if `height` is negative.)
- : Returns the top coordinate value of the `DOMRect` (has the same value as `y`, or `y + height` if `height` is negative).
- {{domxref("DOMRectReadOnly.right")}}
- : Returns the right coordinate value of the `DOMRect` (has the same value as `x + width`, or `x` if `width` is negative.)
- : Returns the right coordinate value of the `DOMRect` (has the same value as `x + width`, or `x` if `width` is negative).
- {{domxref("DOMRectReadOnly.bottom")}}
- : Returns the bottom coordinate value of the `DOMRect` (has the same value as `y + height`, or `y` if `height` is negative.)
- : Returns the bottom coordinate value of the `DOMRect` (has the same value as `y + height`, or `y` if `height` is negative).
- {{domxref("DOMRectReadOnly.left")}}
- : Returns the left coordinate value of the `DOMRect` (has the same value as `x`, or `x + width` if `width` is negative.)
- : Returns the left coordinate value of the `DOMRect` (has the same value as `x`, or `x + width` if `width` is negative).

## Methods

Expand Down
2 changes: 1 addition & 1 deletion files/en-us/web/api/domrectreadonly/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ The **`DOMRectReadOnly`** interface specifies the standard properties used by {{
- {{domxref("DOMRectReadOnly.height")}} {{ReadOnlyInline}}
- : The height of the `DOMRect`.
- {{domxref("DOMRectReadOnly.top")}} {{ReadOnlyInline}}
- : Returns the top coordinate value of the `DOMRect` (usually the same as `y`.)
- : Returns the top coordinate value of the `DOMRect` (usually the same as `y`).
- {{domxref("DOMRectReadOnly.right")}} {{ReadOnlyInline}}
- : Returns the right coordinate value of the `DOMRect` (usually the same as `x + width`).
- {{domxref("DOMRectReadOnly.bottom")}} {{ReadOnlyInline}}
Expand Down

0 comments on commit f0290d2

Please sign in to comment.