Skip to content

Commit 6f7ec12

Browse files
minor fixes
1 parent a035351 commit 6f7ec12

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

1-js/03-code-quality/02-coding-style/article.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ For example:
8686
```js
8787
// backtick quotes ` allow to split the string into multiple lines
8888
let str = `
89-
Ecma International's TC39 is a group of JavaScript developers,
89+
ECMA International's TC39 is a group of JavaScript developers,
9090
implementers, academics, and more, collaborating with the community
9191
to maintain and evolve the definition of JavaScript.
9292
`;

1-js/04-object-basics/03-symbol/article.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ let id = Symbol();
1818

1919
Upon creation, we can give symbol a description (also called a symbol name), mostly useful for debugging purposes:
2020

21-
```js run
21+
```js
2222
// id is a symbol with the description "id"
2323
let id = Symbol("id");
2424
```

1-js/05-data-types/03-string/article.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -534,7 +534,7 @@ The "right" algorithm to do string comparisons is more complex than it may seem,
534534

535535
So, the browser needs to know the language to compare.
536536

537-
Luckily, all modern browsers (IE10- requires the additional library [Intl.JS](https://github.com/andyearnshaw/Intl.js/)) support the internationalization standard [ECMA 402](http://www.ecma-international.org/ecma-402/1.0/ECMA-402.pdf).
537+
Luckily, all modern browsers (IE10- requires the additional library [Intl.js](https://github.com/andyearnshaw/Intl.js/)) support the internationalization standard [ECMA-402](http://www.ecma-international.org/ecma-402/1.0/ECMA-402.pdf).
538538

539539
It provides a special method to compare strings in different languages, following their rules.
540540

1-js/11-async/07-microtask-queue/article.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Why did the `.then` trigger afterwards? What's going on?
2323

2424
## Microtasks queue
2525

26-
Asynchronous tasks need proper management. For that, the Ecma standard specifies an internal queue `PromiseJobs`, more often referred to as the "microtask queue" (ES8 term).
26+
Asynchronous tasks need proper management. For that, the ECMA standard specifies an internal queue `PromiseJobs`, more often referred to as the "microtask queue" (ES8 term).
2727

2828
As stated in the [specification](https://tc39.github.io/ecma262/#sec-jobs-and-job-queues):
2929

0 commit comments

Comments
 (0)