From 7efbd16762f09a508a49e84b518ebeedc7a65a4b Mon Sep 17 00:00:00 2001 From: paroche <46547072+paroche@users.noreply.github.com> Date: Mon, 14 Oct 2019 22:29:56 -0600 Subject: [PATCH] Update article.md 'Changing DOM needs' -> "Changing the DOM requires' (still prefer review) --- 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 4bc6c646..3ff53c9a 100644 --- a/2-ui/1-document/03-dom-navigation/article.md +++ b/2-ui/1-document/03-dom-navigation/article.md @@ -157,7 +157,7 @@ DOM collections, and even more -- *all* navigation properties listed in this cha We can't replace a child by something else by assigning `childNodes[i] = ...`. -Changing DOM needs other methods. We will see them in the next chapter. +Changing the DOM requires other methods. We will see them in the next chapter. ``` ```warn header="DOM collections are live"