From 13b70adcce73908a23a0d9d7ddb4ceb5bb76d47e Mon Sep 17 00:00:00 2001 From: Michael Gellings Date: Sat, 31 Aug 2019 16:31:35 +0200 Subject: [PATCH] fix typo --- 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 7aa7a1f4..3e327b47 100644 --- a/2-ui/1-document/03-dom-navigation/article.md +++ b/2-ui/1-document/03-dom-navigation/article.md @@ -22,7 +22,7 @@ Let's discuss them in more detail. The topmost tree nodes are available directly as `document` properties: `` = `document.documentElement` -: The topmost document node is `document.documentElement`. That's the DOM node of the`` tag. +: The topmost document node is `document.documentElement`. That's the DOM node of the `` tag. `` = `document.body` : Another widely used DOM node is the `` element -- `document.body`.