Correct spacing; Use tabs, not spaces.

This commit is contained in:
John Blum
2019-09-03 15:46:16 -07:00
parent 2fc6a28de2
commit 4169611821

View File

@@ -32,7 +32,7 @@ import example.app.crm.model.Customer;
// tag::class[]
public interface CustomerRepository extends CrudRepository<Customer, Long> {
Customer findByNameLike(String name);
Customer findByNameLike(String name);
}
// end::class[]