From 0be9e5281a148d0ce32e1639633f53541b1f6fd5 Mon Sep 17 00:00:00 2001 From: Julian Verdurmen <304NotModified@users.noreply.github.com> Date: Mon, 30 Sep 2019 00:40:33 +0200 Subject: [PATCH] Docs: JPath -> JSONPath (#2175) --- Src/Newtonsoft.Json/Linq/JToken.cs | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/Src/Newtonsoft.Json/Linq/JToken.cs b/Src/Newtonsoft.Json/Linq/JToken.cs index 4dcd51049..4fc10f972 100644 --- a/Src/Newtonsoft.Json/Linq/JToken.cs +++ b/Src/Newtonsoft.Json/Linq/JToken.cs @@ -2305,10 +2305,10 @@ int IJsonLineInfo.LinePosition } /// - /// Selects a using a JPath expression. Selects the token that matches the object path. + /// Selects a using a JSONPath expression. Selects the token that matches the object path. /// /// - /// A that contains a JPath expression. + /// A that contains a JSONPath expression. /// /// A , or null. public JToken? SelectToken(string path) @@ -2317,10 +2317,10 @@ int IJsonLineInfo.LinePosition } /// - /// Selects a using a JPath expression. Selects the token that matches the object path. + /// Selects a using a JSONPath expression. Selects the token that matches the object path. /// /// - /// A that contains a JPath expression. + /// A that contains a JSONPath expression. /// /// A flag to indicate whether an error should be thrown if no tokens are found when evaluating part of the expression. /// A . @@ -2343,10 +2343,10 @@ int IJsonLineInfo.LinePosition } /// - /// Selects a collection of elements using a JPath expression. + /// Selects a collection of elements using a JSONPath expression. /// /// - /// A that contains a JPath expression. + /// A that contains a JSONPath expression. /// /// An of that contains the selected elements. public IEnumerable SelectTokens(string path) @@ -2355,10 +2355,10 @@ public IEnumerable SelectTokens(string path) } /// - /// Selects a collection of elements using a JPath expression. + /// Selects a collection of elements using a JSONPath expression. /// /// - /// A that contains a JPath expression. + /// A that contains a JSONPath expression. /// /// A flag to indicate whether an error should be thrown if no tokens are found when evaluating part of the expression. /// An of that contains the selected elements.