From d7e46520911653c96fab1f3cd8818ca663facea2 Mon Sep 17 00:00:00 2001 From: luvarqpp Date: Mon, 28 Oct 2019 08:42:57 +0100 Subject: [PATCH] DATAJPA-1617 - Fix quotation on IsEndingWith in documentation. Fixing typo corrupting formatting of documentation. Original pull request: #393. --- src/main/asciidoc/jpa.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/asciidoc/jpa.adoc b/src/main/asciidoc/jpa.adoc index 2a96c23d3..261ef7f95 100644 --- a/src/main/asciidoc/jpa.adoc +++ b/src/main/asciidoc/jpa.adoc @@ -190,7 +190,7 @@ This section describes the various ways to create a query with Spring Data JPA. The JPA module supports defining a query manually as a String or having it being derived from the method name. -Derived queries with the predicates `IsStartingWith`, `StartingWith`, `StartsWith`, IsEndingWith", `EndingWith`, `EndsWith`, +Derived queries with the predicates `IsStartingWith`, `StartingWith`, `StartsWith`, `IsEndingWith`, `EndingWith`, `EndsWith`, `IsNotContaining`, `NotContaining`, `NotContains`, `IsContaining`, `Containing`, `Contains` the respective arguments for these queries will get sanitized. This means if the arguments actually contain characters recognized by `LIKE` as wildcards these will get escaped so they match only as literals. The escape character used can be configured by setting the `escapeCharacter` of the `@EnableJpaRepositories` annotation.