From d87e43ec3076cb91815a06e9990025806b5604e3 Mon Sep 17 00:00:00 2001 From: James Prior Date: Mon, 8 Apr 2024 08:19:35 +0100 Subject: [PATCH] Tweak docs --- docs/docs/guides/jsonpath-extra.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/docs/guides/jsonpath-extra.md b/docs/docs/guides/jsonpath-extra.md index 1ffd5ac..a1dd25c 100644 --- a/docs/docs/guides/jsonpath-extra.md +++ b/docs/docs/guides/jsonpath-extra.md @@ -15,7 +15,7 @@ values = env.query("$.some.path", data).values(); Non-standard features are subject to change if: - conflicting syntax is included in a future JSONPath standard or draft standard. -- an overwhelming consensus from the JSONPath community emerges that differs from our choices. +- an overwhelming consensus emerges from the JSONPath community that differs from our choices. ::: ## Keys selector @@ -26,13 +26,13 @@ Non-standard features are subject to change if: $.users[?@.score == 86].~ ``` -Output using example data from the [previous page](./jsonpath-syntax.md): +Using example data from the [previous page](./jsonpath-syntax.md) we get the following results. ```json ["name", "score", "admin"] ``` -When applied to an array or primitive value, the keys selector select nothing. +When applied to an array or primitive value, the keys selector selects nothing. :::warning Creating a [JSON Pointer](./json-pointer.md) from a [`JSONPathNode`](../api/classes/jsonpath.JSONPathNode.md#topointer) built using the keys selector will result in an unresolvable pointer. JSON Pointer does not support pointing to property names.