Update article.md

This commit is contained in:
Shubham Gupta 2017-09-23 17:13:36 -07:00 committed by GitHub
parent f19274156d
commit 41dd4a724c

View file

@ -157,7 +157,7 @@ The first thing is nice. The second is tolerable, because we can use `Array.from
```warn header="DOM collections are read-only"
DOM collections, and even more -- *all* navigation properties listed in this chapter are read-only.
We can't replace an child by something else assigning `childNodes[i] = ...`.
We can't replace a child by something else assigning `childNodes[i] = ...`.
Changing DOM needs other methods, we'll see them in the next chapter.
```