Skip to content

Commit 99accaf

Browse files
committed
Merge branch 'master' of github.com:javascript-tutorial/en.javascript.info into sync-524d5988
2 parents 4e94465 + 524d598 commit 99accaf

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -413,7 +413,7 @@ There are more functions and constants in `Math` object, including trigonometry,
413413
To write numbers with many zeroes:
414414

415415
- Append `"e"` with the zeroes count to the number. Like: `123e6` is the same as `123` with 6 zeroes `123000000`.
416-
- A negative number after `"e"` causes the number to be divided by 1 with given zeroes. E.g. `123e-6` means `0.000123` (`123` millionth).
416+
- A negative number after `"e"` causes the number to be divided by 1 with given zeroes. E.g. `123e-6` means `0.000123` (`123` millionths).
417417

418418
For different numeral systems:
419419

1-js/06-advanced-functions/03-closure/article.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ During the call, `say()` uses the outer variable `phrase`. Let's look at the det
121121

122122
When a function runs, a new Lexical Environment is created automatically to store local variables and parameters of the call.
123123

124-
For instance, for `say("John")`, it looks like this (the execution is at the line, labelled with an arrow):
124+
For instance, for `say("John")`, it looks like this (the execution is at the line labeled with an arrow):
125125

126126
<!--
127127
```js

0 commit comments

Comments
 (0)