From b0e7599d2da25989c6bd2d79654a327e9c09da3b Mon Sep 17 00:00:00 2001 From: Oleksandr Mandryk Date: Sat, 20 Aug 2016 01:19:43 +0200 Subject: [PATCH] DATAJPA-953 - Fixed typo in reference documentation. --- 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 6a1b52949..57acf9e2a 100644 --- a/src/main/asciidoc/jpa.adoc +++ b/src/main/asciidoc/jpa.adoc @@ -147,7 +147,7 @@ We will create a query using the JPA criteria API from this but essentially this |`Is,Equals`|`findByFirstname`,`findByFirstnameIs`,`findByFirstnameEquals`|`… where x.firstname = ?1` |`Between`|`findByStartDateBetween`|`… where x.startDate between ?1 and ?2` |`LessThan`|`findByAgeLessThan`|`… where x.age < ?1` -|`LessThanEqual`|`findByAgeLessThanEqual`|`… where x.age <= ?1` +|`LessThanEqual`|`findByAgeLessThanEqual`|`… where x.age \<= ?1` |`GreaterThan`|`findByAgeGreaterThan`|`… where x.age > ?1` |`GreaterThanEqual`|`findByAgeGreaterThanEqual`|`… where x.age >= ?1` |`After`|`findByStartDateAfter`|`… where x.startDate > ?1`