From 1bcfccb2172d9ab2477c3541835c573390ed5424 Mon Sep 17 00:00:00 2001 From: Mattia Date: Sun, 10 Apr 2022 14:02:38 +0200 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9f5df75..4653ca3 100644 --- a/README.md +++ b/README.md @@ -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