Merge pull request #3078 from joaquinelio/patch-11

"and" instead of "/" just to match previous line
This commit is contained in:
Ilya Kantor 2022-06-23 11:09:08 +03:00 committed by GitHub
commit 45ba0d173c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -403,7 +403,7 @@ A few examples:
```
`Math.max(a, b, c...)` and `Math.min(a, b, c...)`
: Returns the greatest/smallest from the arbitrary number of arguments.
: Returns the greatest and smallest from the arbitrary number of arguments.
```js run
alert( Math.max(3, 5, -10, 0, 1) ); // 5