diff --git a/spring-framework-reference/src/cache.xml b/spring-framework-reference/src/cache.xml index b3fe6b42ab8..4c6227b82c4 100644 --- a/spring-framework-reference/src/cache.xml +++ b/spring-framework-reference/src/cache.xml @@ -76,7 +76,7 @@ public Book findBook(ISBN isbn) {...}]]> is checked to see whether the invocation has been already executed and does not have to be repeated. While in most cases, only one cache is declared, the annotation allows multiple names to be specified so that more then one cache are being used. In this case, each of the caches will be checked before executing the method - if at least one cache is hit, then the associated value will be returned: - All the other caches that do not contain the method will be updated as well event though the cached method was not actually + All the other caches that do not contain the method will be updated as well even though the cached method was not actually executed.