From da425c060bf575597cdb4aa2b0f1c6668426c861 Mon Sep 17 00:00:00 2001 From: Mani Mishra Date: Thu, 22 Jun 2017 20:02:23 +0530 Subject: [PATCH] fix `HTML` typo with `innerHTML` --- 2-ui/1-document/05-basic-dom-node-properties/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/2-ui/1-document/05-basic-dom-node-properties/article.md b/2-ui/1-document/05-basic-dom-node-properties/article.md index bd05a7e0..2783c3a8 100644 --- a/2-ui/1-document/05-basic-dom-node-properties/article.md +++ b/2-ui/1-document/05-basic-dom-node-properties/article.md @@ -258,7 +258,7 @@ Technically, these two lines do the same: elem.innerHTML += "..."; // is a shorter way to write: *!* -elem.innerHTML = elem.HTML + "..." +elem.innerHTML = elem.innerHTML + "..." */!* ```