Minor fix in example code: No quotes for boolean

Closes gh-1511
This commit is contained in:
Arend v. Reinersdorff 2017-08-31 18:37:34 +02:00 committed by Stephane Nicoll
parent 14af5d941a
commit ba50581961
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) {...}
----