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.