Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion nifi-docs/src/main/asciidoc/expression-language-guide.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -1205,7 +1205,7 @@ then the following Expressions will result in the following values:
| `${str:repeat(1)}` | `abc`
| `${str:repeat(2)}` | `abcabc`
| `${str:repeat(1,2)}` | `abc` or `abcabc` (at random)
| `${str:repeat( ${str:length()} )}` | `abc` or `abcabc` or `abcabcabc` (at random)
| `${str:repeat( ${str:length()} )}` | `abcabcabc`
|================================================================


Expand Down
Loading