Browse Source

Minor fix in example code: No quotes for boolean

Closes gh-1511
pull/1511/merge
Arend v. Reinersdorff 9 years ago committed by Stephane Nicoll
parent
commit
ba50581961
  1. 2
      src/docs/asciidoc/integration.adoc

2
src/docs/asciidoc/integration.adoc

@ -8301,7 +8301,7 @@ entry is updated in the cache. @@ -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) {...}
----

Loading…
Cancel
Save