Merge pull request #767 from 11un/patch-10

typo "brackets" to "parentheses"
This commit is contained in:
Ilya Kantor 2019-01-29 09:46:54 +03:00 committed by GitHub
commit 38e1bb5c52
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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;