Merge pull request #814 from papb/patch-1

Fix variable name mistake in modifying-document
This commit is contained in:
Ilya Kantor 2019-02-21 18:47:59 +03:00 committed by GitHub
commit 2f34acb9c6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -341,7 +341,7 @@ To remove nodes, there are the following methods:
`parentElem.removeChild(node)` `parentElem.removeChild(node)`
: Removes `elem` from `parentElem` (assuming it's a child). : Removes `node` from `parentElem` (assuming it's a child).
`node.remove()` `node.remove()`
: Removes the `node` from its place. : Removes the `node` from its place.