In a JSON file, I have numbers that add up to exactly 50: ```jsonc "splits": [ { "share": 16.7 }, { "share": 16.7 }, { "share": 16.7 }, ], // ... ``` Thankfully, when parsing them I verify that they add up. In v0.3 these numbers were correctly parsed as `16.7`, but in v0.4.1 they parse to `16.699999999999999289457264239899814128875732421875`.
In a JSON file, I have numbers that add up to exactly 50:
Thankfully, when parsing them I verify that they add up.
In v0.3 these numbers were correctly parsed as
16.7, but in v0.4.1 they parse to16.699999999999999289457264239899814128875732421875.