From 8c6508f6d69d2159548f6c657da781be1c3450af Mon Sep 17 00:00:00 2001 From: James Prior Date: Tue, 26 Mar 2024 07:16:08 +0000 Subject: [PATCH] Tweak docs --- docs/docs/guides/jsonpath-extra.md | 4 ++-- docs/docs/intro.mdx | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/docs/guides/jsonpath-extra.md b/docs/docs/guides/jsonpath-extra.md index 6cbc5bc..1ffd5ac 100644 --- a/docs/docs/guides/jsonpath-extra.md +++ b/docs/docs/guides/jsonpath-extra.md @@ -2,7 +2,7 @@ **_New in version 1.2.0_** -JSON P3 includes some extra, non-standard JSONPath syntax that is not enabled by default. Setting the [`strict`](../api/namespaces/jsonpath.md#jsonpathenvironmentoptions) option to `false` when instantiating a [`JSONPathEnvironment`](../api/classes/jsonpath.JSONPathEnvironment.md) will enable all non-standard syntax. +JSON P3 includes some extra, non-standard JSONPath syntax that is disabled by default. Setting the [`strict`](../api/namespaces/jsonpath.md#jsonpathenvironmentoptions) option to `false` when instantiating a [`JSONPathEnvironment`](../api/classes/jsonpath.JSONPathEnvironment.md) will enable all non-standard syntax. ```javascript import { JSONPathEnvironment } from "json-p3"; @@ -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 amongst the JSONPath community emerges that differs from our choices. +- an overwhelming consensus from the JSONPath community emerges that differs from our choices. ::: ## Keys selector diff --git a/docs/docs/intro.mdx b/docs/docs/intro.mdx index 95bb7fb..caf9b20 100644 --- a/docs/docs/intro.mdx +++ b/docs/docs/intro.mdx @@ -89,7 +89,7 @@ Download and include JSON P3 in a script tag: Or use a CDN ```html - +