From 4ed6708e601e5a3986a5ad94905a052d27b100a1 Mon Sep 17 00:00:00 2001 From: Teascade Date: Sat, 26 Aug 2017 00:43:37 +0000 Subject: [PATCH] Yet fixed the operators a bit --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index eec046c..023f115 100644 --- a/README.md +++ b/README.md @@ -84,7 +84,7 @@ Operators are a number of individual and combined symbols which together form me - Division-operator. Divides the first value with the second. - Examples: - `6 / 3` returns `2` - - `2 / 3` returns `0.666..` + - `2.0 / 3` returns `0.666..` - `%` - Modulo-operator. Retrns the remainder from the division of the first value by the second. - Examples: @@ -93,7 +93,7 @@ Operators are a number of individual and combined symbols which together form me - `10 % 3` returns `1` - `++` - Addition-operator. Special operator, which adds one to the value before it. - Examples: + - Examples: - `1++` returns 2 - `2++` returns 3 - Some operators are listed under [Conditions](#conditions)