From 77093671e0ff90379ffc0fdf5be502cdf6988868 Mon Sep 17 00:00:00 2001 From: Alex Ethier Date: Thu, 21 Dec 2023 13:12:08 -0500 Subject: [PATCH] NIFI-12535: This closes #8181. Fixed documentation for 'PadRight Examples' table name in the Expression Language Guide as well as the last example in the table. Signed-off-by: Joseph Witt --- nifi-docs/src/main/asciidoc/expression-language-guide.adoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nifi-docs/src/main/asciidoc/expression-language-guide.adoc b/nifi-docs/src/main/asciidoc/expression-language-guide.adoc index 2163d78e6b..e2c30cb6fb 100644 --- a/nifi-docs/src/main/asciidoc/expression-language-guide.adoc +++ b/nifi-docs/src/main/asciidoc/expression-language-guide.adoc @@ -1078,13 +1078,13 @@ Expressions will provide the following results: -.PadLeft Examples +.PadRight Examples |======================================================================================= | Expression | Value | `${greetings:padRight(10)}` | `hello\_____` | `${greetings:padRight(10, '@')}` | `hello@@@@@` | `${greetings:padRight(10, 'xy')}` | `helloxyxyx` -| `${greetings:padLeft(10, 'aVeryLongPaddingString')}` | `helloaVery` +| `${greetings:padRight(10, 'aVeryLongPaddingString')}` | `helloaVery` |=======================================================================================