diff --git a/src/main/java/org/elasticsearch/indices/analysis/HunspellService.java b/src/main/java/org/elasticsearch/indices/analysis/HunspellService.java index f2ea0e37398..08e9ea9fa90 100644 --- a/src/main/java/org/elasticsearch/indices/analysis/HunspellService.java +++ b/src/main/java/org/elasticsearch/indices/analysis/HunspellService.java @@ -140,7 +140,7 @@ public class HunspellService extends AbstractComponent { */ private Dictionary loadDictionary(String locale, Settings nodeSettings, Environment env) throws Exception { if (logger.isDebugEnabled()) { - logger.debug("Loading huspell dictionary [{}]...", locale); + logger.debug("Loading hunspell dictionary [{}]...", locale); } File dicDir = new File(hunspellDir, locale); if (!dicDir.exists() || !dicDir.isDirectory()) {