Skip to content

Commit b7ea3e6

Browse files
jaeyeonlingmp911de
authored andcommitted
#228 - Use consistently spaces instead of tabs in readme code samples.
1 parent cb1784f commit b7ea3e6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,10 @@ Here is a quick teaser of an application using Spring Data Repositories in Java:
3030
----
3131
public interface PersonRepository extends CrudRepository<Person, Long> {
3232
33-
@Query("SELECT * FROM person WHERE lastname = :lastname")
33+
@Query("SELECT * FROM person WHERE lastname = :lastname")
3434
Flux<Person> findByLastname(String lastname);
3535
36-
@Query("SELECT * FROM person WHERE firstname LIKE :lastname")
36+
@Query("SELECT * FROM person WHERE firstname LIKE :lastname")
3737
Flux<Person> findByFirstnameLike(String firstname);
3838
}
3939

0 commit comments

Comments
 (0)