From 49b38190eeaf3861b2f0784044270b9c899ecf14 Mon Sep 17 00:00:00 2001 From: Chris Beams Date: Tue, 6 Sep 2011 21:03:02 +0000 Subject: [PATCH] Fix typo in cache abstraction reference doc Issue: SPR-8670 --- spring-framework-reference/src/cache.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-framework-reference/src/cache.xml b/spring-framework-reference/src/cache.xml index b3fe6b42ab..4c6227b82c 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.