From 3a06a715ebf219940e28da97ae880b85c341f537 Mon Sep 17 00:00:00 2001 From: Stefan Date: Sun, 15 Dec 2024 12:42:13 +0100 Subject: [PATCH 1/2] Update if.md --- docs/if.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/if.md b/docs/if.md index 222f35bd3..ffd0b1865 100644 --- a/docs/if.md +++ b/docs/if.md @@ -1,6 +1,6 @@ # IF ... END IF -**IF** is a very powerful control flow sentence that allows you to _make decisions_ under specified contitions. +**IF** is a very powerful control flow sentence that allows you to _make decisions_ under specified conditions. ## Syntax ``` From 037dcc65e30749f51fc046e0904e3968473218b0 Mon Sep 17 00:00:00 2001 From: Stefan Date: Sun, 15 Dec 2024 12:44:27 +0100 Subject: [PATCH 2/2] Update types.md --- docs/types.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/types.md b/docs/types.md index c3f56ba74..1e503690b 100644 --- a/docs/types.md +++ b/docs/types.md @@ -41,7 +41,7 @@ Their sizes are 32 bit for `Fixed` type and 40 bits for `Float` one. #### Fixed 32 bit Fixed Point decimal. First 16 bits are the integer part, whilst remaining 16 contains the decimal one. -Ranges from -32767.9999847 to 32767.9999847 with a precision of 1 / 2^16 (0.000015 aprox.). +Ranges from -32767.9999847 to 32767.9999847 with a precision of 1 / 2^16 (0.000015 approx.). Fixed points decimal are less precise than Floating ones, but much faster and requires less space (1 byte less). Also, their range is much limited. They're usually used on screen drawing when Floating point is too slow and decimal