From 415c58e21b885b8b6bbda6b0a9e43583b1aed9b8 Mon Sep 17 00:00:00 2001 From: Pavel Anisimov Date: Fri, 17 Dec 2021 11:16:20 +0300 Subject: [PATCH] Polish CacheManager customization section in reference doc See gh-29094 --- .../spring-boot-docs/src/docs/asciidoc/features/caching.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-boot-project/spring-boot-docs/src/docs/asciidoc/features/caching.adoc b/spring-boot-project/spring-boot-docs/src/docs/asciidoc/features/caching.adoc index ca8d0b8b6a..584860ecde 100644 --- a/spring-boot-project/spring-boot-docs/src/docs/asciidoc/features/caching.adoc +++ b/spring-boot-project/spring-boot-docs/src/docs/asciidoc/features/caching.adoc @@ -57,7 +57,7 @@ The starter brings in `spring-context-support`. If you add dependencies manually, you must include `spring-context-support` in order to use the JCache, EhCache 2.x, or Caffeine support. If the `CacheManager` is auto-configured by Spring Boot, you can further tune its configuration before it is fully initialized by exposing a bean that implements the `CacheManagerCustomizer` interface. -The following example sets a flag to say that `null` values should be passed down to the underlying map: +The following example sets a flag to say that `null` values should not be passed down to the underlying map: [source,java,indent=0,subs="verbatim"] ----