From e06d352a715ca807fbfd34c536582597a48aca3f Mon Sep 17 00:00:00 2001 From: Martin Macko Date: Mon, 8 Feb 2016 20:31:05 +0100 Subject: [PATCH] DATAMONGO-1375 - Fix typo in MongoOperations JavaDoc. Original pull request: #343. --- .../springframework/data/mongodb/core/MongoOperations.java | 4 ++-- 1 file changed, 2 insertions(+), 2 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 d166bf1f1..4135a61d7 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 @@ -190,7 +190,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. @@ -207,7 +207,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.