diff --git a/1-js/05-data-types/09-destructuring-assignment/article.md b/1-js/05-data-types/09-destructuring-assignment/article.md index 5ff25d90..c2db64fa 100644 --- a/1-js/05-data-types/09-destructuring-assignment/article.md +++ b/1-js/05-data-types/09-destructuring-assignment/article.md @@ -441,7 +441,7 @@ function showMenu(*!*{title = "Untitled", width = 200, height = 100, items = []} showMenu(options); ``` -We can also use the more complex destructuring with nestings and colon mappings: +We can also use more complex destructuring with nested objects and colon mappings: ```js run let options = { diff --git a/5-animation/3-js-animation/article.md b/5-animation/3-js-animation/article.md index 351c7898..a6c1215e 100644 --- a/5-animation/3-js-animation/article.md +++ b/5-animation/3-js-animation/article.md @@ -22,7 +22,7 @@ let timer = setInterval(function() { }, 1000 / fps) ``` -The more complete example of the animation: +More complete example of the animation: ```js let start = Date.now(); // remember start time