From 617dbdac3fc6c9a48806bdc198d65560c7eea64a Mon Sep 17 00:00:00 2001 From: Ryan Cloherty Date: Sat, 24 Aug 2019 21:10:11 -0400 Subject: [PATCH] DATAMONGO-2352 - Fix documentation typos. Original pull request: #782. --- .../springframework/data/mongodb/core/MongoOperations.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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 71b3fcdc0..29e583487 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 @@ -1190,7 +1190,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 @@ -1252,7 +1252,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 @@ -1270,7 +1270,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