mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-15 12:25:50 +00:00
Fix typo in OwnerRepository.java
This commit is contained in:
parent
b94d30626f
commit
6e71aaa44c
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||||
|
|
Loading…
Reference in a new issue