Fix syntax error (misspelled class name) in a code snippet in the Inline Caching Sample Guide.

This commit is contained in:
John Blum
2020-12-08 19:54:00 -08:00
parent 9e34651520
commit 2210d97668

View File

@@ -376,7 +376,7 @@ This custom `KeyGenerator` was applied in the caching annotations of the service
[source,java]
----
@Service
class CalcultorService {
class CalculatorService {
@Cacheable(keyGenerator="resultKeyGenerator")
public int factorial(int number) { }