From 5c7eaaa9699ed4cc2ec5c1296ee5bb7d04a637ee Mon Sep 17 00:00:00 2001 From: Phillip Webb Date: Wed, 20 Nov 2013 13:12:30 -0800 Subject: [PATCH] Fix SpEL docs indicating +/- is Supported on Date Issue: SPR-11057 --- src/asciidoc/index.adoc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/asciidoc/index.adoc b/src/asciidoc/index.adoc index 0f9f5bdfb8..fe86ce65ad 100644 --- a/src/asciidoc/index.adoc +++ b/src/asciidoc/index.adoc @@ -11872,10 +11872,10 @@ boolean falseValue = parser.parseExpression(expression).getValue(societyContext, [[expressions-operators-mathematical]] ===== Mathematical operators -The addition operator can be used on numbers, strings and dates. Subtraction can be used -on numbers and dates. Multiplication and division can be used only on numbers. Other -mathematical operators supported are modulus (%) and exponential power (^). Standard -operator precedence is enforced. These operators are demonstrated below. +The addition operator can be used on both numbers and strings. Subtraction, multiplication +and division can be used only on numbers. Other mathematical operators supported are +modulus (%) and exponential power (^). Standard operator precedence is enforced. These +operators are demonstrated below. [source,java] [subs="verbatim,quotes"]