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 dab3b0de9d..b63c9e8b3d 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 @@ -191,7 +191,7 @@ public interface MongoOperations { DBCollection createCollection(Class entityClass); /** - * Create a collect with a name based on the provided entity class using the options. + * Create a collection with a name based on the provided entity class using the options. * * @param entityClass class that determines the collection to create * @param collectionOptions options to use when creating the collection. @@ -208,7 +208,7 @@ public interface MongoOperations { DBCollection createCollection(String collectionName); /** - * Create a collect with the provided name and options. + * Create a collection with the provided name and options. * * @param collectionName name of the collection * @param collectionOptions options to use when creating the collection.