Fix typo in OwnerRepository.java

This commit is contained in:
Andrii Abramov 2023-03-22 19:56:56 +02:00 committed by GitHub
parent 0962ed7e8f
commit bfd33a8f43
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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)