Fix typo in OwnerRepository.java

This commit is contained in:
Andrii Abramov 2023-03-22 19:56:56 +02:00 committed by Dave Syer
parent b94d30626f
commit 6e71aaa44c

View file

@ -73,7 +73,7 @@ public interface OwnerRepository extends Repository<Owner, Integer> {
void save(Owner owner); void save(Owner owner);
/** /**
* Returnes all the owners from data store * Returns all the owners from data store
**/ **/
@Query("SELECT owner FROM Owner owner") @Query("SELECT owner FROM Owner owner")
@Transactional(readOnly = true) @Transactional(readOnly = true)