From d364afdeb684cd01cd6958004e89f6dfac5003be Mon Sep 17 00:00:00 2001 From: "Greg L. Turnquist" Date: Fri, 13 May 2022 17:07:59 -0500 Subject: [PATCH] Fix typo in repository documentation. Original issue: https://github.com/spring-projects/spring-data-jpa/issues/1761 Closes #2629. --- src/main/asciidoc/repositories.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/asciidoc/repositories.adoc b/src/main/asciidoc/repositories.adoc index a58e9af99..d4027ba09 100644 --- a/src/main/asciidoc/repositories.adoc +++ b/src/main/asciidoc/repositories.adoc @@ -1568,7 +1568,7 @@ Please refer to the store specific section for more details. [[core.web.binding]] ==== Web Databinding Support -You can use Spring Data projections (described in <>) to bind incoming request payloads by using either https://goessner.net/articles/JsonPath/[JSONPath] expressions (requires https://github.com/json-path/JsonPath[Jayway JsonPath] or https://www.w3.org/TR/xpath-31/[XPath] expressions (requires https://xmlbeam.org/[XmlBeam]), as the following example shows: +You can use Spring Data projections (described in <>) to bind incoming request payloads by using either https://goessner.net/articles/JsonPath/[JSONPath] expressions (requires https://github.com/json-path/JsonPath[Jayway JsonPath]) or https://www.w3.org/TR/xpath-31/[XPath] expressions (requires https://xmlbeam.org/[XmlBeam]), as the following example shows: .HTTP payload binding using JSONPath or XPath expressions ====