DATAMONGO-2087 - Fix typo in MongoRepository.

Original Pull Request: #610
This commit is contained in:
Khaled Baklouti
2018-09-16 04:22:39 +01:00
committed by Christoph Strobl
parent 3478fd5ab3
commit 586bf858f9

View File

@@ -30,6 +30,7 @@ import org.springframework.data.repository.query.QueryByExampleExecutor;
* @author Christoph Strobl
* @author Thomas Darimont
* @author Mark Paluch
* @author Khaled Baklouti
*/
@NoRepositoryBean
public interface MongoRepository<T, ID> extends PagingAndSortingRepository<T, ID>, QueryByExampleExecutor<T> {
@@ -39,7 +40,7 @@ public interface MongoRepository<T, ID> extends PagingAndSortingRepository<T, ID
* @see org.springframework.data.repository.CrudRepository#saveAll(java.lang.Iterable)
*/
@Override
<S extends T> List<S> saveAll(Iterable<S> entites);
<S extends T> List<S> saveAll(Iterable<S> entities);
/*
* (non-Javadoc)