Skip to content

Commit f71d753

Browse files
committed
NIFI-15228 Corrected expected result of EL repeat function when the exact number to repeat is the string's length.
1 parent 2e89278 commit f71d753

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nifi-docs/src/main/asciidoc/expression-language-guide.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1205,7 +1205,7 @@ then the following Expressions will result in the following values:
12051205
| `${str:repeat(1)}` | `abc`
12061206
| `${str:repeat(2)}` | `abcabc`
12071207
| `${str:repeat(1,2)}` | `abc` or `abcabc` (at random)
1208-
| `${str:repeat( ${str:length()} )}` | `abc` or `abcabc` or `abcabcabc` (at random)
1208+
| `${str:repeat( ${str:length()} )}` | `abcabcabc`
12091209
|================================================================
12101210

12111211

0 commit comments

Comments
 (0)