From 564f3f3442bc2ffdbe8bd3b6fecb2a2c71872693 Mon Sep 17 00:00:00 2001 From: Raymond Hill Date: Fri, 28 Mar 2025 10:24:21 -0400 Subject: [PATCH] English --- src/js/jsonpath.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/js/jsonpath.js b/src/js/jsonpath.js index 09cda9b6d..2f001fb0c 100644 --- a/src/js/jsonpath.js +++ b/src/js/jsonpath.js @@ -21,7 +21,7 @@ */ /** - * Implement the parsing of uBO-flavored JSON path syntax + * Implement the parsing of uBO-flavored JSON path queries. * * Reference to original JSON path syntax: * https://goessner.net/articles/JsonPath/index.html @@ -33,7 +33,7 @@ * - Official: $..book[?(@.isbn)] * - uBO-flavored: ..book[?(.isbn)] * - * - uBO-flavor syntax do not (yet) support: + * - uBO-flavor syntax does not (yet) support: * - Union (,) operator. * - Array slice operator * @@ -62,8 +62,8 @@ * - ..* * * uBO-flavored syntax supports assigning a value to a resolved JSON path by - * appending `=[value]` to the JSON path. The assigned value MUST be valid JSON. - * Examples: + * appending `=[value]` to the JSON path query. The assigned value MUST be + * valid JSON. Examples: * - .store..price=0 * - .store.book[*].author="redacted" *