Tie-breaking documentation for round

This commit is contained in:
Matthew Emery 2022-07-18 12:22:51 -07:00 committed by GitHub
parent f6e6f2a3d3
commit 38db3b374f
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. If `n` is exactly halfway between two integers, it away from 0.
Rounds `n` to the nearest integer boundary. If `n` is exactly halfway between two integers, rounds `n` away from 0.
## table library