Update library.md

This commit is contained in:
Matthew Emery 2022-07-18 12:18:26 -07:00 committed by GitHub
parent 5b2e39c922
commit f6e6f2a3d3
Signed by: DevComp
GPG key ID: 4AEE18F83AFDEB23

View file

@ -360,7 +360,7 @@ Returns `-1` if `n` is negative, `1` if `n` is positive, and `0` if `n` is zero
function math.round(n: number): number
```
Rounds `n` to the nearest integer boundary.
Rounds `n` to the nearest integer boundary. If `n` is exactly halfway between two integers, it away from 0.
## table library