diff --git a/src/reference/docbook/cache.xml b/src/reference/docbook/cache.xml
index 01fa2d5a87..040b6fa5e3 100644
--- a/src/reference/docbook/cache.xml
+++ b/src/reference/docbook/cache.xml
@@ -147,7 +147,7 @@ public Book findBook(ISBN isbn, boolean checkWarehouse, boolean includeUsed)Sometimes, a method might not be suitable for caching all the time (for example, it might depend on the given arguments). The cache annotations support such functionality
through the conditional 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
+ If true, the method is cached - if not, it behaves as if the 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 then 32: