From e9dba3087dab4a772124d51351c8508a9cee30ed Mon Sep 17 00:00:00 2001 From: Juldrixx <31806759+juldrixx@users.noreply.github.com> Date: Mon, 27 Feb 2023 15:29:14 +0100 Subject: [PATCH] NIFI-11225 Fix toLowerCase and toUpperCase documentation (#6992) * NIFI-11225 Fixed toLowerCase and toUpperCase documentation --- nifi-docs/src/main/asciidoc/record-path-guide.adoc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/nifi-docs/src/main/asciidoc/record-path-guide.adoc b/nifi-docs/src/main/asciidoc/record-path-guide.adoc index 17fd585fba..b2ef0f5ba7 100644 --- a/nifi-docs/src/main/asciidoc/record-path-guide.adoc +++ b/nifi-docs/src/main/asciidoc/record-path-guide.adoc @@ -758,7 +758,7 @@ and a record such as: } ---- -The following record path expression would remove extraneous whitespace: +The following record path expression change lower case letters to upper case: |========================================================== | RecordPath | Return value @@ -787,11 +787,11 @@ and a record such as: } ---- -The following record path expression would remove extraneous whitespace: +The following record path expression change upper case letters to lower case: |========================================================== | RecordPath | Return value -| `trim(/message)` | hello world +| `toLowerCase(/message)` | hello world |========================================================== === base64Encode