DATACMNS-291 - Fixed typo in JavaDoc of CrudRepository.

This commit is contained in:
Oliver Gierke
2013-02-27 14:46:17 +01:00
parent 9e82377c15
commit b26f09f3b4

View File

@@ -45,7 +45,7 @@ public interface CrudRepository<T, ID extends Serializable> extends Repository<T
<S extends T> Iterable<S> save(Iterable<S> entities);
/**
* Retrives an entity by its id.
* Retrieves an entity by its id.
*
* @param id must not be {@literal null}.
* @return the entity with the given id or {@literal null} if none found