diff --git a/bootique-mvc-freemarker/src/main/java/io/bootique/mvc/freemarker/MvcFreemarkerModuleProvider.java b/bootique-mvc-freemarker/src/main/java/io/bootique/mvc/freemarker/MvcFreemarkerModuleProvider.java index 93a7748..d23a097 100644 --- a/bootique-mvc-freemarker/src/main/java/io/bootique/mvc/freemarker/MvcFreemarkerModuleProvider.java +++ b/bootique-mvc-freemarker/src/main/java/io/bootique/mvc/freemarker/MvcFreemarkerModuleProvider.java @@ -33,7 +33,7 @@ public class MvcFreemarkerModuleProvider implements BQModuleProvider { public BuiltModule buildModule() { return BuiltModule.of(new MvcFreemarkerModule()) .provider(this) - .description("Deprecated and can be replaced with 'bootique-mvc-jakarta-freemarker'.") + .description("Deprecated, can be replaced with 'bootique-mvc-jakarta-freemarker'.") .build(); } } diff --git a/bootique-mvc-mustache/src/main/java/io/bootique/mvc/mustache/MvcMustacheModuleProvider.java b/bootique-mvc-mustache/src/main/java/io/bootique/mvc/mustache/MvcMustacheModuleProvider.java index 0c141bf..71cb5e4 100644 --- a/bootique-mvc-mustache/src/main/java/io/bootique/mvc/mustache/MvcMustacheModuleProvider.java +++ b/bootique-mvc-mustache/src/main/java/io/bootique/mvc/mustache/MvcMustacheModuleProvider.java @@ -38,7 +38,7 @@ public class MvcMustacheModuleProvider implements BQModuleProvider { public BuiltModule buildModule() { return BuiltModule.of(new MvcMustacheModule()) .provider(this) - .description("Deprecated and can be replaced with 'bootique-mvc-jakarta-mustache'.") + .description("Deprecated, can be replaced with 'bootique-mvc-jakarta-mustache'.") .build(); } diff --git a/bootique-mvc/src/main/java/io/bootique/mvc/MvcModuleProvider.java b/bootique-mvc/src/main/java/io/bootique/mvc/MvcModuleProvider.java index 01485c3..b6708e3 100644 --- a/bootique-mvc/src/main/java/io/bootique/mvc/MvcModuleProvider.java +++ b/bootique-mvc/src/main/java/io/bootique/mvc/MvcModuleProvider.java @@ -36,7 +36,7 @@ public class MvcModuleProvider implements BQModuleProvider { public BuiltModule buildModule() { return BuiltModule.of(new MvcModule()) .provider(this) - .description("Deprecated and can be replaced with 'bootique-mvc-jakarta'.") + .description("Deprecated, can be replaced with 'bootique-mvc-jakarta'.") .config("mvc", MvcFactory.class) .build(); }