Added missing ')' after Math.min.

This commit is contained in:
Joe Lin 2017-05-07 20:42:43 +08:00 committed by GitHub
parent 1a9794f460
commit 40da71ce7a

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)`