From 6cf946ea3fc1fb68d06eef6dc84c0fd91217a74b Mon Sep 17 00:00:00 2001 From: Stephane Nicoll Date: Sat, 26 Apr 2014 11:40:44 +0300 Subject: [PATCH] Fix typo --- spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc b/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc index cb59230d88..b71aa8ee24 100644 --- a/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc +++ b/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc @@ -869,7 +869,7 @@ If you need to add or customize converters you can use Spring Boot's ==== Static Content By default Spring Boot will serve static content from a folder called `/static` (or `/public` or `/resources` or `/META-INF/resources`) in the classpath or from the root -of the `ServeltContext`. It uses the `ResourceHttpRequestHandler` from Spring MVC so you +of the `ServletContext`. It uses the `ResourceHttpRequestHandler` from Spring MVC so you can modify that behavior by adding your own `WebMvcConfigurerAdapter` and overriding the `addResourceHandlers` method.