diff --git a/src/asciidoc/integration.adoc b/src/asciidoc/integration.adoc index b248f976edc..19dd7b1f88e 100644 --- a/src/asciidoc/integration.adoc +++ b/src/asciidoc/integration.adoc @@ -8436,9 +8436,9 @@ Sometimes, a method might not be suitable for caching all the time (for example, might depend on the given arguments). The cache annotations support such functionality through the `condition` parameter which takes a `SpEL` expression that is evaluated to either `true` or `false`. If `true`, the method is cached - if not, it behaves as if the -method is not cached, that is executed every since time no matter what values are in the -cache or what arguments are used. A quick example - the following method will be cached -only if the argument `name` has a length shorter than 32: +method is not cached, that is executed every time no matter what values are in the cache +or what arguments are used. A quick example - the following method will be cached only +if the argument `name` has a length shorter than 32: [source,java,indent=0] [subs="verbatim,quotes"]