This is an automated email from the ASF dual-hosted git repository.
pvillard pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/nifi.git
The following commit(s) were added to refs/heads/main by this push:
new f80e2ec NIFI-9532 Correct error in allDelineatedValues table in EL
Guide
f80e2ec is described below
commit f80e2ec70b4af45156f0e57197f3f3d6e2313874
Author: Andrew Lim <[email protected]>
AuthorDate: Tue Jan 4 14:30:28 2022 -0500
NIFI-9532 Correct error in allDelineatedValues table in EL Guide
Signed-off-by: Pierre Villard <[email protected]>
This closes #5628.
---
nifi-docs/src/main/asciidoc/expression-language-guide.adoc | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/nifi-docs/src/main/asciidoc/expression-language-guide.adoc
b/nifi-docs/src/main/asciidoc/expression-language-guide.adoc
index d09fa87..67a95c4 100644
--- a/nifi-docs/src/main/asciidoc/expression-language-guide.adoc
+++ b/nifi-docs/src/main/asciidoc/expression-language-guide.adoc
@@ -2679,7 +2679,7 @@ provides several functions for evaluating the same
conditions against groups of
|===============================================================================
| Expression | Value
| `${allDelineatedValues("${word_list}", ","):contains("o")}` | `true`
-| `${allDelineatedValues("${number_list}", ","):count()}` | `4`
+| `${allDelineatedValues("${number_list}", ","):count()}` | `5`
| `${allDelineatedValues("${number_list}", ","):matches("[0-9]+")}` | `true`
| `${allDelineatedValues("${word_list}", ","):matches('e')}` | `false`
|===============================================================================