Skip to content

Commit c0ae93c

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

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.adoc

Lines changed: 1 addition & 1 deletion
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)