fix HTML typo with innerHTML

This commit is contained in:
Mani Mishra 2017-06-22 20:02:23 +05:30 committed by GitHub
parent 2a0516d174
commit da425c060b

View file

@ -258,7 +258,7 @@ Technically, these two lines do the same:
elem.innerHTML += "..."; elem.innerHTML += "...";
// is a shorter way to write: // is a shorter way to write:
*!* *!*
elem.innerHTML = elem.HTML + "..." elem.innerHTML = elem.innerHTML + "..."
*/!* */!*
``` ```