diff --git a/spring-data-mongodb/src/main/java/org/springframework/data/mongodb/core/MongoOperations.java b/spring-data-mongodb/src/main/java/org/springframework/data/mongodb/core/MongoOperations.java index cbeb73856..1b7ceb612 100644 --- a/spring-data-mongodb/src/main/java/org/springframework/data/mongodb/core/MongoOperations.java +++ b/spring-data-mongodb/src/main/java/org/springframework/data/mongodb/core/MongoOperations.java @@ -1138,7 +1138,7 @@ public interface MongoOperations extends FluentMongoOperations { *
* The object is converted to the MongoDB native representation using an instance of {@see MongoConverter}. * - * If you object has an "Id' property, it will be set with the generated Id from MongoDB. If your Id property is a + * If your object has an "Id' property, it will be set with the generated Id from MongoDB. If your Id property is a * String then MongoDB ObjectId will be used to populate that string. Otherwise, the conversion from ObjectId to your * property type will be handled by Spring's BeanWrapper class that leverages Type Conversion API. See * Spring's Type @@ -1200,7 +1200,7 @@ public interface MongoOperations extends FluentMongoOperations { * The object is converted to the MongoDB native representation using an instance of {@see MongoConverter}. Unless * configured otherwise, an instance of {@link MappingMongoConverter} will be used. * - * If you object has an "Id' property, it will be set with the generated Id from MongoDB. If your Id property is a + * If your object has an "Id' property, it will be set with the generated Id from MongoDB. If your Id property is a * String then MongoDB ObjectId will be used to populate that string. Otherwise, the conversion from ObjectId to your * property type will be handled by Spring's BeanWrapper class that leverages Type Conversion API. See * Spring's Type @@ -1218,7 +1218,7 @@ public interface MongoOperations extends FluentMongoOperations { * The object is converted to the MongoDB native representation using an instance of {@see MongoConverter}. Unless * configured otherwise, an instance of {@link MappingMongoConverter} will be used. * - * If you object has an "Id' property, it will be set with the generated Id from MongoDB. If your Id property is a + * If your object has an "Id' property, it will be set with the generated Id from MongoDB. If your Id property is a * String then MongoDB ObjectId will be used to populate that string. Otherwise, the conversion from ObjectId to your * property type will be handled by Spring's BeanWrapper class that leverages Type Conversion API. See Spring's Type