Skip to content

Commit 1fcccd7

Browse files
authored
Merge pull request #1407 from scott-ln/patch-1
Minor fixes for consistency
2 parents aa0c451 + 8da054b commit 1fcccd7

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Browser environment, specs
22

3-
The JavaScript language was initially created for web browsers. Since then, it has evolved and become a language with many uses and platforms.
3+
The JavaScript language was initially created for web browsers. Since then it has evolved and become a language with many uses and platforms.
44

55
A platform may be a browser, or a web-server or another *host*, even a coffee machine. Each of them provides platform-specific functionality. The JavaScript specification calls that a *host environment*.
66

@@ -60,14 +60,14 @@ For instance, server-side scripts that download HTML pages and process them can
6060
```
6161

6262
```smart header="CSSOM for styling"
63-
CSS rules and stylesheets are structured in a different way than HTML. There's a separate specification [CSSOM](https://www.w3.org/TR/cssom-1/) that explains how they are represented as objects, and how to read and write them.
63+
CSS rules and stylesheets are structured in a different way than HTML. There's a separate specification, [CSS Object Model (CSSOM)](https://www.w3.org/TR/cssom-1/), that explains how they are represented as objects, and how to read and write them.
6464
6565
CSSOM is used together with DOM when we modify style rules for the document. In practice though, CSSOM is rarely required, because usually CSS rules are static. We rarely need to add/remove CSS rules from JavaScript, but that's also possible.
6666
```
6767

68-
## BOM (Browser object model)
68+
## BOM (Browser Object Model)
6969

70-
Browser Object Model (BOM) are additional objects provided by the browser (host environment) to work with everything except the document.
70+
The Browser Object Model (BOM) represents additional objects provided by the browser (host environment) for working with everything except the document.
7171

7272
For instance:
7373

0 commit comments

Comments
 (0)