Fix typo in cache abstraction reference doc

Issue: SPR-8670
This commit is contained in:
Chris Beams 2011-09-06 21:03:02 +00:00
parent 9a25efbbda
commit 49b38190ee
1 changed files with 1 additions and 1 deletions

View File

@ -76,7 +76,7 @@ public Book findBook(ISBN isbn) {...}]]></programlisting>
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:</para>
<note>All the other caches that do not contain the method will be updated as well event though the cached method was not actually
<note>All the other caches that do not contain the method will be updated as well even though the cached method was not actually
executed.</note>
<programlisting language="java"><![CDATA[@Cacheable({ "books", "isbns" })