From 01da2b3a84cd5f59cd4008a19b77d86716b20311 Mon Sep 17 00:00:00 2001 From: Jan Steemann Date: Wed, 5 Nov 2014 17:09:10 +0100 Subject: [PATCH] updated documentation --- Documentation/Books/Users/Aql/Operators.mdpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Documentation/Books/Users/Aql/Operators.mdpp b/Documentation/Books/Users/Aql/Operators.mdpp index bf507c248f..e8f163d4b4 100644 --- a/Documentation/Books/Users/Aql/Operators.mdpp +++ b/Documentation/Books/Users/Aql/Operators.mdpp @@ -23,11 +23,13 @@ These operators accept any data types for the first and second operands. Each of the comparison operators returns a boolean value if the comparison can be evaluated and returns *true* if the comparison evaluates to true, and *false* -otherwise. +otherwise. Please note that the comparsion operators will not perform any +implicit type casts if the compared operands have different types. Some examples for comparison operations in AQL: ``` +0 == null // false 1 > 0 // true true != null // true 45 <= "yikes!" // true