typo "brackets" to "parentheses"

This commit is contained in:
11un 2019-01-28 16:41:57 -08:00
parent e774c7c938
commit 89cdf0adeb

View file

@ -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;