Browse Source

#256 - Fix typo in readme.

modified a typing error
pull/1188/head
sanghoon lee 6 years ago committed by Mark Paluch
parent
commit
e6bcc32197
  1. 2
      README.adoc

2
README.adoc

@ -33,7 +33,7 @@ public interface PersonRepository extends CrudRepository<Person, Long> { @@ -33,7 +33,7 @@ public interface PersonRepository extends CrudRepository<Person, Long> {
@Query("SELECT * FROM person WHERE lastname = :lastname")
Flux<Person> findByLastname(String lastname);
@Query("SELECT * FROM person WHERE firstname LIKE :lastname")
@Query("SELECT * FROM person WHERE firstname LIKE :firstname")
Flux<Person> findByFirstnameLike(String firstname);
}

Loading…
Cancel
Save