You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nifi.apache.org by ma...@apache.org on 2023/02/27 14:30:25 UTC

[nifi] branch support/nifi-1.x updated: NIFI-11225 Fix toLowerCase and toUpperCase documentation (#6992)

This is an automated email from the ASF dual-hosted git repository.

markap14 pushed a commit to branch support/nifi-1.x
in repository https://gitbox.apache.org/repos/asf/nifi.git


The following commit(s) were added to refs/heads/support/nifi-1.x by this push:
     new e9dba3087d NIFI-11225 Fix toLowerCase and toUpperCase documentation (#6992)
e9dba3087d is described below

commit e9dba3087dab4a772124d51351c8508a9cee30ed
Author: Juldrixx <31...@users.noreply.github.com>
AuthorDate: Mon Feb 27 15:29:14 2023 +0100

    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