Update rounding-functions.md

Wrong result in the Examples of Banker’s rounding
This commit is contained in:
quoctan132 2021-09-22 15:12:35 +07:00 committed by GitHub
parent 56c0767063
commit c1453a0786
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -176,7 +176,7 @@ roundBankers(4.5) = 4
roundBankers(3.55, 1) = 3.6
roundBankers(3.65, 1) = 3.6
roundBankers(10.35, 1) = 10.4
roundBankers(10.755, 2) = 11,76
roundBankers(10.755, 2) = 10.76
```
**See Also**