Skip to content

Commit b6ed18e

Browse files
committed
up
1 parent d1a0659 commit b6ed18e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

1-js/05-data-types/09-destructuring-assignment/article.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -441,7 +441,7 @@ function showMenu(*!*{title = "Untitled", width = 200, height = 100, items = []}
441441
showMenu(options);
442442
```
443443
444-
We can also use the more complex destructuring with nestings and colon mappings:
444+
We can also use more complex destructuring with nested objects and colon mappings:
445445
446446
```js run
447447
let options = {

5-animation/3-js-animation/article.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ let timer = setInterval(function() {
2222
}, 1000 / fps)
2323
```
2424

25-
The more complete example of the animation:
25+
More complete example of the animation:
2626

2727
```js
2828
let start = Date.now(); // remember start time

0 commit comments

Comments
 (0)