From c208e3d1b6b0055a28d959ff9a3fb19b3fece3d0 Mon Sep 17 00:00:00 2001 From: Ivan Schedrovskiy Date: Mon, 13 Jan 2025 21:39:37 +0200 Subject: [PATCH 1/4] Change children to Element.children link to article --- files/en-us/web/api/element/previouselementsibling/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/en-us/web/api/element/previouselementsibling/index.md b/files/en-us/web/api/element/previouselementsibling/index.md index c557fff530fed99..b026a4734406a5e 100644 --- a/files/en-us/web/api/element/previouselementsibling/index.md +++ b/files/en-us/web/api/element/previouselementsibling/index.md @@ -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")}} list, or `null` if the specified element is the first one in the list. ## Value From 171e5c58af6f5af4acd38ab6f03f69f66f49b178 Mon Sep 17 00:00:00 2001 From: Ivan Schedrovskiy Date: Mon, 13 Jan 2025 21:46:09 +0200 Subject: [PATCH 2/4] Change children to Element.children article for nextElementSibling --- files/en-us/web/api/element/nextelementsibling/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/en-us/web/api/element/nextelementsibling/index.md b/files/en-us/web/api/element/nextelementsibling/index.md index c03aa5575b78793..2cf27c1d8ab78d3 100644 --- a/files/en-us/web/api/element/nextelementsibling/index.md +++ b/files/en-us/web/api/element/nextelementsibling/index.md @@ -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")}} list, or `null` if the specified element is the last one in the list. ## Value From 332c9a1b97554018627e9c48a97983c99429c3a2 Mon Sep 17 00:00:00 2001 From: Ivan Schedrovskiy Date: Mon, 13 Jan 2025 21:52:32 +0200 Subject: [PATCH 3/4] Change Element.children to children in nextElementSubling --- files/en-us/web/api/element/nextelementsibling/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/en-us/web/api/element/nextelementsibling/index.md b/files/en-us/web/api/element/nextelementsibling/index.md index 2cf27c1d8ab78d3..20b4808e755e892 100644 --- a/files/en-us/web/api/element/nextelementsibling/index.md +++ b/files/en-us/web/api/element/nextelementsibling/index.md @@ -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 -{{domxref("Element.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 From 7236c82523be5d9d78d790beb3ccb73b36437103 Mon Sep 17 00:00:00 2001 From: Ivan Schedrovskiy Date: Mon, 13 Jan 2025 21:53:07 +0200 Subject: [PATCH 4/4] Change Element.children to children in previousElementSibling --- files/en-us/web/api/element/previouselementsibling/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/en-us/web/api/element/previouselementsibling/index.md b/files/en-us/web/api/element/previouselementsibling/index.md index b026a4734406a5e..d05618fff932951 100644 --- a/files/en-us/web/api/element/previouselementsibling/index.md +++ b/files/en-us/web/api/element/previouselementsibling/index.md @@ -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 {{domxref("Element.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