From e578ace7d71ac8aac758fdc82f76ef438d943467 Mon Sep 17 00:00:00 2001 From: Phillip Webb Date: Mon, 19 Dec 2016 10:29:42 -0800 Subject: [PATCH] Polish doc formatting --- spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc | 1 + spring-boot-docs/src/main/asciidoc/using-spring-boot.adoc | 2 +- 2 files changed, 2 insertions(+), 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 7a32c1a063..4a2879e54c 100644 --- a/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc +++ b/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc @@ -2716,6 +2716,7 @@ advanced examples, typically to take full control over the configuration of the DataSource. + [[boot-features-embedded-database-support]] ==== Embedded Database Support It's often convenient to develop applications using an in-memory embedded database. diff --git a/spring-boot-docs/src/main/asciidoc/using-spring-boot.adoc b/spring-boot-docs/src/main/asciidoc/using-spring-boot.adoc index b6f90a430a..5b2905ab73 100644 --- a/spring-boot-docs/src/main/asciidoc/using-spring-boot.adoc +++ b/spring-boot-docs/src/main/asciidoc/using-spring-boot.adoc @@ -781,7 +781,7 @@ will cache compiled templates to avoid repeatedly parsing template files. Also, Spring MVC can add HTTP caching headers to responses when serving static resources. Whilst caching is very beneficial in production, it can be counter productive during -development, preventing you from seeing the changes you just made in your application. +development, preventing you from seeing the changes you just made in your application. For this reason, spring-boot-devtools will disable those caching options by default. Cache options are usually configured by settings in your `application.properties` file.