Skip to content

Commit 08ed816

Browse files
committed
Merge branch 'master' of github.com:javascript-tutorial/en.javascript.info into sync-a6fdfda0
2 parents 9f01628 + a6fdfda commit 08ed816

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

1-js/05-data-types/02-number/article.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,13 +44,13 @@ In other words, `e` multiplies the number by `1` with the given zeroes count.
4444
Now let's write something very small. Say, 1 microsecond (one millionth of a second):
4545

4646
```js
47-
let ms = 0.000001;
47+
let mсs = 0.000001;
4848
```
4949

5050
Just like before, using `"e"` can help. If we'd like to avoid writing the zeroes explicitly, we could say the same as:
5151

5252
```js
53-
let ms = 1e-6; // six zeroes to the left from 1
53+
let mcs = 1e-6; // six zeroes to the left from 1
5454
```
5555

5656
If we count the zeroes in `0.000001`, there are 6 of them. So naturally it's `1e-6`.

1-js/11-async/08-async-await/article.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ console.log(user);
136136
137137
If we're not using modules, or [older browsers](https://caniuse.com/mdn-javascript_operators_await_top_level) must be supported, there's a universal recipe: wrapping into an anonymous async function.
138138
139-
Lke this:
139+
Like this:
140140
141141
```js
142142
(async () => {

0 commit comments

Comments
 (0)