From ba50581961d851cbf93afaedc2c268dafead0159 Mon Sep 17 00:00:00 2001 From: "Arend v. Reinersdorff" Date: Thu, 31 Aug 2017 18:37:34 +0200 Subject: [PATCH] Minor fix in example code: No quotes for boolean Closes gh-1511 --- src/docs/asciidoc/integration.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/docs/asciidoc/integration.adoc b/src/docs/asciidoc/integration.adoc index 2710b74e9f..e8f8f47349 100644 --- a/src/docs/asciidoc/integration.adoc +++ b/src/docs/asciidoc/integration.adoc @@ -8301,7 +8301,7 @@ entry is updated in the cache. [source,java,indent=0] [subs="verbatim,quotes"] ---- - @Cacheable(cacheNames="foos", **sync="true"**) + @Cacheable(cacheNames="foos", **sync=true**) public Foo executeExpensiveOperation(String id) {...} ----