From c48990e66a19e303d4573444b8150d628d06f295 Mon Sep 17 00:00:00 2001 From: SimonePDA Date: Wed, 18 Apr 2018 17:37:58 +0200 Subject: [PATCH] Update equalTo.adoc Specifies good practices for comparisons --- Language/Structure/Comparison Operators/equalTo.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Language/Structure/Comparison Operators/equalTo.adoc b/Language/Structure/Comparison Operators/equalTo.adoc index b22bbee93..c9f11bd72 100644 --- a/Language/Structure/Comparison Operators/equalTo.adoc +++ b/Language/Structure/Comparison Operators/equalTo.adoc @@ -18,7 +18,7 @@ subCategories: [ "Comparison Operators" ] [float] === Description -Compares the variable on the left with the value or variable on the right of the operator. Returns true when the two operands are equal. +Compares the variable on the left with the value or variable on the right of the operator. Returns true when the two operands are equal. Please note that you may compare variables of different data types, but that could generate unpredictable results, it is therefore recommended to compare variables of the same data type including the signed/unsigned type. [%hardbreaks]