diff --git a/2-ui/1-document/03-dom-navigation/article.md b/2-ui/1-document/03-dom-navigation/article.md
index b46467c3..b58f15fe 100644
--- a/2-ui/1-document/03-dom-navigation/article.md
+++ b/2-ui/1-document/03-dom-navigation/article.md
@@ -88,7 +88,7 @@ For instance, here `
` has children `` and `
` (and few blank text
```
-...And if we ask for all descendants of ``, then we get direct children ``, `
` and also more nested elements like `- ` (being a child of `
`) and `` (being a child of `- `) -- the whole subtree.
+...And if we ask for all descendants of ``, then we get direct children `
`, `
` and also more nested elements like `- ` (being a child of `
`) and `` (being a child of `- `) -- the entire subtree.
**The `childNodes` collection provides access to all child nodes, including text nodes.**
@@ -177,7 +177,7 @@ Please, don't. The `for..in` loop iterates over all enumerable properties. And c
````
@@ -242,7 +242,7 @@ In other words, the `documentElement` (``) is the root node. Formally, it
Sometimes that matters when we're walking over the chain of parents and call a method on each of them, but `document` doesn't have it, so we exclude it.
````
-Let's modify one of examples above: replace `childNodes` with `children`. Now it shows only elements:
+Let's modify one of the examples above: replace `childNodes` with `children`. Now it shows only elements:
```html run