From 4b47c389228b4ae32ce11f4ee2755a5a58a1f81b Mon Sep 17 00:00:00 2001 From: Jason Tedor Date: Wed, 13 Jan 2016 15:01:59 -0500 Subject: [PATCH] Fix typo in comment in o/e/c/c/Cache.java --- core/src/main/java/org/elasticsearch/common/cache/Cache.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/java/org/elasticsearch/common/cache/Cache.java b/core/src/main/java/org/elasticsearch/common/cache/Cache.java index 0060a71f974..a42d01ccf72 100644 --- a/core/src/main/java/org/elasticsearch/common/cache/Cache.java +++ b/core/src/main/java/org/elasticsearch/common/cache/Cache.java @@ -336,7 +336,7 @@ public class Cache { * value using the given mapping function and enters it into this map unless null. The load method for a given key * will be invoked at most once. * - * @param key the key whose associated value is to be returned or computed for if non-existant + * @param key the key whose associated value is to be returned or computed for if non-existent * @param loader the function to compute a value given a key * @return the current (existing or computed) value associated with the specified key, or null if the computed * value is null