Skip to content

Commit d2bbfc1

Browse files
committed
fixed-some-typos
1 parent 38e1937 commit d2bbfc1

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

2-ui/1-document/01-browser-environment/article.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ if (confirm("Go to Wikipedia?")) {
8383
}
8484
```
8585

86-
Functions `alert/confirm/prompt` are also a part of BOM: they are directly not related to the document, but represent pure browser methods of communicating with the user.
86+
Functions `alert/confirm/prompt` are also a part of BOM: they are not directly related to the document, but represent pure browser methods of communicating with the user.
8787

8888
BOM is the part of the general [HTML specification](https://html.spec.whatwg.org).
8989

2-ui/1-document/02-dom-nodes/article.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ The backbone of an HTML document are tags.
1010

1111
According to Document Object Model (DOM), every HTML-tag is an object. Nested tags are called "children" of the enclosing one.
1212

13-
The text inside a tag it is an object as well.
13+
The text inside a tag is an object as well.
1414

1515
All these objects are accessible using JavaScript.
1616

0 commit comments

Comments
 (0)