Browse Source

Correct name of check-template-location property in error message

Closes gh-2788
pull/2842/head
Andy Wilkinson 11 years ago
parent
commit
5547f91bfb
  1. 2
      spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/mustache/MustacheAutoConfiguration.java

2
spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/mustache/MustacheAutoConfiguration.java

@ -65,7 +65,7 @@ public class MustacheAutoConfiguration { @@ -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)");
}
}

Loading…
Cancel
Save