From 270fda10fc00e53bd078fa95a73c9299e2476807 Mon Sep 17 00:00:00 2001 From: Lukasz Kryger Date: Tue, 15 Nov 2016 10:15:55 +0100 Subject: [PATCH] Update MongoRepository.java Fix typo: repetition --- .../data/mongodb/repository/MongoRepository.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-data-mongodb/src/main/java/org/springframework/data/mongodb/repository/MongoRepository.java b/spring-data-mongodb/src/main/java/org/springframework/data/mongodb/repository/MongoRepository.java index 5361f3d6c6..15625a0050 100644 --- a/spring-data-mongodb/src/main/java/org/springframework/data/mongodb/repository/MongoRepository.java +++ b/spring-data-mongodb/src/main/java/org/springframework/data/mongodb/repository/MongoRepository.java @@ -58,7 +58,7 @@ public interface MongoRepository List findAll(Sort sort); /** - * Inserts the given a given entity. Assumes the instance to be new to be able to apply insertion optimizations. Use + * Inserts the given entity. Assumes the instance to be new to be able to apply insertion optimizations. Use * the returned instance for further operations as the save operation might have changed the entity instance * completely. Prefer using {@link #save(Object)} instead to avoid the usage of store-specific API. *