Merge pull request #547 from j0e1in/patch-1

Added missing ')' after `Math.min`.
This commit is contained in:
Ilya Kantor 2017-05-08 11:30:26 +03:00 committed by GitHub
commit 2465f17ed6

View file

@ -396,7 +396,7 @@ A few examples:
```js run
alert( Math.max(3, 5, -10, 0, 1) ); // 5
alert( Math.min(1, 2 ); // 1
alert( Math.min(1, 2) ); // 1
```
`Math.pow(n, power)`