Fix variable name mistake in modifying-document

This commit is contained in:
Pedro Augusto de Paula Barbosa 2019-02-19 21:49:11 -03:00 committed by GitHub
parent 1b2d3e8010
commit ac2e10c716
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.