From 704cad8b86e0c4c36391ebe549a085d699c7aab6 Mon Sep 17 00:00:00 2001 From: "Violet.Lee" Date: Tue, 6 Aug 2019 00:39:41 +0900 Subject: [PATCH] Update article.md --- 2-ui/1-document/03-dom-navigation/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/2-ui/1-document/03-dom-navigation/article.md b/2-ui/1-document/03-dom-navigation/article.md index 7a950e97..7864649e 100644 --- a/2-ui/1-document/03-dom-navigation/article.md +++ b/2-ui/1-document/03-dom-navigation/article.md @@ -195,7 +195,7 @@ 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 is `nextSibling`, and the previous one is `previousSibling`. +The next sibling is `nextSibling`, and the previous one is `previousSibling`. The parent is available as `parentNode`.