Merge pull request #3199 from digital-bw/patch-3

fix small typo
This commit is contained in:
Ilya Kantor 2022-10-01 18:33:27 +02:00 committed by GitHub
commit 586cc5441c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -28,6 +28,6 @@ Note that `63.5` has no precision loss at all. That's because the decimal part `
```js run
alert( Math.round(6.35 * 10) / 10); // 6.35 -> 63.5 -> 64(rounded) -> 6.4
alert( Math.round(6.35 * 10) / 10 ); // 6.35 -> 63.5 -> 64(rounded) -> 6.4
```