Skip to content

Commit 36fb898

Browse files
soominsohnschauder
authored andcommitted
Fix typo in README.adoc
The correct wildcard for JPQL is `%`. Original pull request #3530
1 parent a2f47a5 commit 36fb898

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ public class MyService {
5555
repository.save(person);
5656
5757
List<Person> lastNameResults = repository.findByLastname("Gierke");
58-
List<Person> firstNameResults = repository.findByFirstnameLike("Oli*");
58+
List<Person> firstNameResults = repository.findByFirstnameLike("Oli%");
5959
}
6060
}
6161

0 commit comments

Comments
 (0)