Skip to content

Commit

Permalink
Change children to Element.children with link to article in sibling's (
Browse files Browse the repository at this point in the history
…#37634)

* Change children to Element.children link to article

* Change children to Element.children article for nextElementSibling

* Change Element.children to children in nextElementSubling

* Change Element.children to children in previousElementSibling
  • Loading branch information
ltlaitoff authored Jan 22, 2025
1 parent 2b0c47e commit 9d9ec23
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion files/en-us/web/api/element/nextelementsibling/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ browser-compat: api.Element.nextElementSibling

The **`Element.nextElementSibling`** read-only
property returns the element immediately following the specified one in its parent's
children list, or `null` if the specified element is the last one in the list.
{{domxref("Element.children", "children")}} list, or `null` if the specified element is the last one in the list.

## Value

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ browser-compat: api.Element.previousElementSibling

The **`Element.previousElementSibling`**
read-only property returns the {{domxref("Element")}} immediately prior to the specified
one in its parent's children list, or `null` if the specified element is the first one in the list.
one in its parent's {{domxref("Element.children", "children")}} list, or `null` if the specified element is the first one in the list.

## Value

Expand Down

0 comments on commit 9d9ec23

Please sign in to comment.