Skip to content

Commit

Permalink
Fix typo in README.adoc
Browse files Browse the repository at this point in the history
The correct wildcard for JPQL is `%`.

Original pull request #3530
  • Loading branch information
soominsohn authored and schauder committed Jul 4, 2024
1 parent 018c833 commit c0ae93c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public class MyService {
repository.save(person);
List<Person> lastNameResults = repository.findByLastname("Gierke");
List<Person> firstNameResults = repository.findByFirstnameLike("Oli*");
List<Person> firstNameResults = repository.findByFirstnameLike("Oli%");
}
}
Expand Down

0 comments on commit c0ae93c

Please sign in to comment.