From 8082b338e2e2f2e931d289882f710c60a028ccc8 Mon Sep 17 00:00:00 2001 From: Honnix Date: Tue, 31 Dec 2019 18:58:48 +0100 Subject: [PATCH] Document that SpEL supports symbolic logical operators Make it clear that symbolic logical operators are supported. Closes gh-24276 --- 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 54f44b4e4b..0c2e823fc8 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