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 e32fc75643
commit 816a441d6e

View File

@@ -375,7 +375,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) { }