From 89cdf0adebe59913854bb3364a501c50cb56ac2c Mon Sep 17 00:00:00 2001 From: 11un Date: Mon, 28 Jan 2019 16:41:57 -0800 Subject: [PATCH] typo "brackets" to "parentheses" --- 1-js/05-data-types/09-destructuring-assignment/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 2e196065..7a48c89d 100644 --- a/1-js/05-data-types/09-destructuring-assignment/article.md +++ b/1-js/05-data-types/09-destructuring-assignment/article.md @@ -335,7 +335,7 @@ The problem is that JavaScript treats `{...}` in the main code flow (not inside } ``` -To show JavaScript that it's not a code block, we can wrap the whole assignment in brackets `(...)`: +To show JavaScript that it's not a code block, we can wrap the whole assignment in parentheses `(...)`: ```js run let title, width, height;