Merge pull request #1511 from arend-von-reinersdorff:patch-1

* pr/1511:
  Minor fix in example code: No quotes for boolean
This commit is contained in:
Stephane Nicoll 2017-09-01 09:27:05 +02:00
commit 3a006439ee
1 changed files with 1 additions and 1 deletions

View File

@ -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) {...}
----