minor adjustments to the docs

This commit is contained in:
Francesco Cozzuto
2023-01-25 01:34:13 +01:00
parent 9f7d1f6a1e
commit 401aeb130f
4 changed files with 85 additions and 64 deletions
+1 -1
View File
@@ -22,7 +22,7 @@ Both integers and floats (floating point values) are signed and represented usin
* multiplication `*`
* division `/`
* modulo `%`
Here "modulo" refers to the remainder of the division. These operations mainly behave like one would expect and have the following type conversion rules:
1. Operations involving integers evaluate to integers, except division. The result of a division is always a float.
1. If an arithmetic operation involves a float, the result is also float.