From 7a9984f98aff177eb1cd3b7c6db41906dc716975 Mon Sep 17 00:00:00 2001 From: Honnix Date: Mon, 30 Dec 2019 17:06:53 +0100 Subject: [PATCH] symbolic logical operators To make it clear that symbolic logical operators are supported. --- src/docs/asciidoc/core/core-expressions.adoc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/docs/asciidoc/core/core-expressions.adoc b/src/docs/asciidoc/core/core-expressions.adoc index 54f44b4e4bb2..0c2e823fc8b2 100644 --- a/src/docs/asciidoc/core/core-expressions.adoc +++ b/src/docs/asciidoc/core/core-expressions.adoc @@ -1133,9 +1133,9 @@ All of the textual operators are case-insensitive. SpEL supports the following logical operators: -* `and` -* `or` -* `not` +* `and` (`&&`) +* `or` (`||`) +* `not` (`!`) The following example shows how to use the logical operators