From 5547f91bfb5dd0aaa07828f294b5cdd35033bdd8 Mon Sep 17 00:00:00 2001 From: Andy Wilkinson Date: Wed, 8 Apr 2015 15:48:54 +0100 Subject: [PATCH] Correct name of check-template-location property in error message Closes gh-2788 --- .../boot/autoconfigure/mustache/MustacheAutoConfiguration.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/mustache/MustacheAutoConfiguration.java b/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/mustache/MustacheAutoConfiguration.java index cdca7995d0..d6de3d5c99 100644 --- a/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/mustache/MustacheAutoConfiguration.java +++ b/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/mustache/MustacheAutoConfiguration.java @@ -65,7 +65,7 @@ public class MustacheAutoConfiguration { Assert.state(location.exists(this.applicationContext), "Cannot find template location: " + location + " (please add some templates, check your Mustache " - + "configuration, or set spring.mustache.template." + + "configuration, or set spring.mustache." + "check-template-location=false)"); } }