Skip to content

Commit 4102c62

Browse files
committed
Fixed ambiguous sentence in conditional cache documentation
Issue: SPR-14399
1 parent 351a729 commit 4102c62

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/asciidoc/integration.adoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8436,9 +8436,9 @@ Sometimes, a method might not be suitable for caching all the time (for example,
84368436
might depend on the given arguments). The cache annotations support such functionality
84378437
through the `condition` parameter which takes a `SpEL` expression that is evaluated to
84388438
either `true` or `false`. If `true`, the method is cached - if not, it behaves as if the
8439-
method is not cached, that is executed every since time no matter what values are in the
8440-
cache or what arguments are used. A quick example - the following method will be cached
8441-
only if the argument `name` has a length shorter than 32:
8439+
method is not cached, that is executed every time no matter what values are in the cache
8440+
or what arguments are used. A quick example - the following method will be cached only
8441+
if the argument `name` has a length shorter than 32:
84428442

84438443
[source,java,indent=0]
84448444
[subs="verbatim,quotes"]

0 commit comments

Comments
 (0)