From 317e64708539a7b86fceab6c25592465f035354d Mon Sep 17 00:00:00 2001 From: Per Lundberg Date: Fri, 3 Sep 2021 11:51:46 +0300 Subject: [PATCH] Fix typo in Javadoc --- .../main/java/com/github/benmanes/caffeine/cache/Policy.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/caffeine/src/main/java/com/github/benmanes/caffeine/cache/Policy.java b/caffeine/src/main/java/com/github/benmanes/caffeine/cache/Policy.java index 85400ad687..334a5df65a 100644 --- a/caffeine/src/main/java/com/github/benmanes/caffeine/cache/Policy.java +++ b/caffeine/src/main/java/com/github/benmanes/caffeine/cache/Policy.java @@ -45,7 +45,7 @@ public interface Policy { /** * Returns the value associated with the {@code key} in this cache, or {@code null} if there is no * cached value for the {@code key}. Unlike {@link Cache#getIfPresent(Object)}, this method does - * not produce any side effects such as updating statistics, the eviction policy, reseting the + * not produce any side effects such as updating statistics, the eviction policy, resetting the * expiration time, or triggering a refresh. * * @param key the key whose associated value is to be returned