Merge pull request #59 from mani-mishra/patch-1

fix `HTML` typo with `innerHTML`
This commit is contained in:
Ilya Kantor 2017-06-30 13:55:40 +03:00 committed by GitHub
commit 1c757f7c7a

View file

@ -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 + "..."
*/!*
```