Update README.md

This commit is contained in:
Mattia 2022-04-10 14:02:38 +02:00 committed by GitHub
parent 81e95feea4
commit 1bcfccb217
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -79,7 +79,7 @@ NimKalc treats all numerical values as `float` to simplify the implementation of
from floating point numbers the `AstNode` object has a `kind` discriminant which will be equal to `NodeKind.Integer` for ints
and `NodeKind.Float` for decimals. It is advised that you take this into account when using the library, since integers might
start losing precision when converted from their float counterpart due to the difference of the two types. Everything should
be fine as long as the value doesn't exceed 2 ^ 53, though
be fine as long as the value doesn't exceed 2 ^ 53 though.
__Note__: The string representation of integer nodes won't show the decimal part for clarity