Documentation of round tie-breaking (#602)

* Update library.md

* Tie-breaking documentation for round
This commit is contained in:
Matthew Emery 2022-07-18 12:36:23 -07:00 committed by GitHub
parent 5b2e39c922
commit 96316c66dc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

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, rounds `n` away from 0.
## table library