You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nifi.apache.org by mt...@apache.org on 2020/11/24 23:02:02 UTC

[nifi] branch main updated: NIFI-8032: fix record-path-guide.adoc

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

mthomsen pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/nifi.git


The following commit(s) were added to refs/heads/main by this push:
     new 857eeca  NIFI-8032: fix record-path-guide.adoc
857eeca is described below

commit 857eeca3c7d4b275fd698430594e7fae4864feff
Author: zhangcheng <zh...@foxmail.com>
AuthorDate: Fri Nov 20 17:03:03 2020 +0800

    NIFI-8032: fix record-path-guide.adoc
    
    This closes #4679
    
    Signed-off-by: Mike Thomsen <mt...@apache.org>
---
 nifi-docs/src/main/asciidoc/record-path-guide.adoc | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/nifi-docs/src/main/asciidoc/record-path-guide.adoc b/nifi-docs/src/main/asciidoc/record-path-guide.adoc
index dff7c72..996d3fd 100644
--- a/nifi-docs/src/main/asciidoc/record-path-guide.adoc
+++ b/nifi-docs/src/main/asciidoc/record-path-guide.adoc
@@ -234,7 +234,7 @@ is telling the RecordPath that we want to access the `details` field at the high
 field we can use square brackets to indicate that we want to specify a Map Key, and we can then specify the key in quotes.
 
 Further, we can select more than one Map Key, using a comma-separated list: `/details/address['city', 'state', 'zip']`. We can also select all of the fields, if we want,
-using the Wildcard operator (`*`): `/details/address[*]`. Map fields do not contain any sort of ordering, so it is not possible to reference the keys by numeric indices.
+using the Wildcard operator (`\*`): `/details/address[*]`. Map fields do not contain any sort of ordering, so it is not possible to reference the keys by numeric indices.
 
 
 [[predicates]]
@@ -255,7 +255,7 @@ fields relative to the field that the Predicate applies to. The `Operator` must
 - Greater Than (`>`)
 - Greater Than or Equal To (`>=`)
 - Less Than (`<`)
-- Less Than or Equal To (`<=`)
+- Less Than or Equal To (`\<=`)
 
 The `Expression` can be a literal value such as `50` or `Hello` or can be another RecordPath.