Skip to content

Commit 9dd4746

Browse files
authored
Update article.md
1 parent ef3f4f2 commit 9dd4746

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

2-ui/1-document/03-dom-navigation/article.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -155,9 +155,9 @@ The first thing is nice. The second is tolerable, because we can use `Array.from
155155
```warn header="DOM collections are read-only"
156156
DOM collections, and even more -- *all* navigation properties listed in this chapter are read-only.
157157
158-
We can't replace a child by something else assigning `childNodes[i] = ...`.
158+
We can't replace a child by something else by assigning `childNodes[i] = ...`.
159159
160-
Changing DOM needs other methods, we'll see them in the next chapter.
160+
Changing DOM needs other methods. We will see them in the next chapter.
161161
```
162162
163163
```warn header="DOM collections are live"
@@ -309,7 +309,7 @@ An example of usage:
309309
310310
The specification: [tabular data](https://html.spec.whatwg.org/multipage/tables.html).
311311
312-
There are also additional navigation properties for HTML forms. We'll look at them later when start working with forms.
312+
There are also additional navigation properties for HTML forms. We'll look at them later when we start working with forms.
313313
314314
# Summary
315315

0 commit comments

Comments
 (0)