This is an automated email from the ASF dual-hosted git repository.
henrib pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-jexl.git
The following commit(s) were added to refs/heads/master by this push:
new 248b71d JEXL-353: changed doc for not-in/not-match example result
248b71d is described below
commit 248b71de1c3c5f25b7ec8c7ff87d6cb18b0d1896
Author: henrib <[email protected]>
AuthorDate: Wed Dec 1 10:42:40 2021 +0100
JEXL-353: changed doc for not-in/not-match example result
---
src/site/xdoc/reference/syntax.xml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/site/xdoc/reference/syntax.xml
b/src/site/xdoc/reference/syntax.xml
index 3b718df..63aec3e 100644
--- a/src/site/xdoc/reference/syntax.xml
+++ b/src/site/xdoc/reference/syntax.xml
@@ -729,7 +729,7 @@
as "not in" operator.
Note that arrays and user classes exposing a public
'contains' method will allow their instances
to behave as right-hand side operands of this operator.
- <code> "a" !~ ["a","b","c","d","e",f"]</code> returns
<code>true</code>.
+ <code> "a" !~ ["a","b","c","d","e",f"]</code> returns
<code>false</code>.
</td>
</tr>
<tr>