From fc2bb4d99a95e65087de60738483272a98af85d2 Mon Sep 17 00:00:00 2001 From: Ilya Kantor Date: Mon, 5 Aug 2019 19:03:54 +0300 Subject: [PATCH] minor --- 2-ui/1-document/03-dom-navigation/article.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/2-ui/1-document/03-dom-navigation/article.md b/2-ui/1-document/03-dom-navigation/article.md index 7864649e..80cefd1c 100644 --- a/2-ui/1-document/03-dom-navigation/article.md +++ b/2-ui/1-document/03-dom-navigation/article.md @@ -195,11 +195,11 @@ For instance, here `` and `` are siblings: - `` is said to be the "next" or "right" sibling of ``, - `` is said to be the "previous" or "left" sibling of ``. -The next sibling is `nextSibling`, and the previous one is `previousSibling`. +The next sibling is in `nextSibling` property, and the previous one - in `previousSibling`. The parent is available as `parentNode`. -So all these tests are truthy: +For example: ```js // parent of is