Skip to content

Commit abc74fd

Browse files
bakillerchristophstrobl
authored andcommitted
DATAMONGO-2087 - Fix typo in MongoRepository.
Original Pull Request: #610
1 parent 3a89558 commit abc74fd

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

spring-data-mongodb/src/main/java/org/springframework/data/mongodb/repository/MongoRepository.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@
3030
* @author Christoph Strobl
3131
* @author Thomas Darimont
3232
* @author Mark Paluch
33+
* @author Khaled Baklouti
3334
*/
3435
@NoRepositoryBean
3536
public interface MongoRepository<T, ID> extends PagingAndSortingRepository<T, ID>, QueryByExampleExecutor<T> {
@@ -39,7 +40,7 @@ public interface MongoRepository<T, ID> extends PagingAndSortingRepository<T, ID
3940
* @see org.springframework.data.repository.CrudRepository#saveAll(java.lang.Iterable)
4041
*/
4142
@Override
42-
<S extends T> List<S> saveAll(Iterable<S> entites);
43+
<S extends T> List<S> saveAll(Iterable<S> entities);
4344

4445
/*
4546
* (non-Javadoc)

0 commit comments

Comments
 (0)