From b9835dfd8511a3a34a5c9b7d0b91d1ba57058493 Mon Sep 17 00:00:00 2001 From: danielaparker Date: Tue, 10 Aug 2021 12:43:44 -0400 Subject: [PATCH] Doc update --- src/JsonCons.JsonPath/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/JsonCons.JsonPath/README.md b/src/JsonCons.JsonPath/README.md index 3257f8c..d5e2af5 100644 --- a/src/JsonCons.JsonPath/README.md +++ b/src/JsonCons.JsonPath/README.md @@ -51,9 +51,9 @@ in expressions. may omit the parentheses around the expression, as in `$..book[?@.price<10]`. - Unions may have separate JSONPath selectors, e.g. - +```csharp $..[@.firstName,@.address.city] - +``` - A parent selector `^`, borrowed from [JSONPath Plus](https://www.npmjs.com/package/jsonpath-plus), provides access to the parent node.