فهرست منبع

Fix typo in Hunspell logging

Clinton Gormley 11 سال پیش
والد
کامیت
d0441857cd
1فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده
  1. 1 1
      src/main/java/org/elasticsearch/indices/analysis/HunspellService.java

+ 1 - 1
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()) {