diff --git a/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/mongo/embedded/EmbeddedMongoProperties.java b/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/mongo/embedded/EmbeddedMongoProperties.java index 2271869452..8a31477b6c 100644 --- a/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/mongo/embedded/EmbeddedMongoProperties.java +++ b/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/mongo/embedded/EmbeddedMongoProperties.java @@ -34,12 +34,12 @@ import de.flapdoodle.embed.mongo.distribution.Feature; public class EmbeddedMongoProperties { /** - * Version of Mongo to use + * Version of Mongo to use. */ private String version = "2.6.10"; /** - * Comma-separated list of features to enable + * Comma-separated list of features to enable. */ private Set features = new HashSet( Arrays.asList(Feature.SYNC_DELAY));