From 009ae8822b32dad4c4781ef005674b787ee00228 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Iv=C3=A1n=20L=C3=B3pez?= Date: Fri, 27 Jun 2014 12:57:39 +0200 Subject: [PATCH] Fix typo in documentation --- 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 7286e9c10f..a4237f05c5 100644 --- a/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc +++ b/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc @@ -592,7 +592,7 @@ be marked with `@Profile` to limit when it is loaded: ---- @Configuration @Profile("production") - public class ProductionConfiguraiton { + public class ProductionConfiguration { // ...