浏览代码

fix mispelling in file NumberWordFormatter file

Xu Haozhe 6 年之前
父节点
当前提交
cbb1a578ea
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      hutool-core/src/main/java/cn/hutool/core/convert/NumberWordFormatter.java

+ 1 - 1
hutool-core/src/main/java/cn/hutool/core/convert/NumberWordFormatter.java

@@ -13,7 +13,7 @@ public class NumberWordFormatter {
 
 
 	private static final String[] NUMBER = new String[]{"", "ONE", "TWO", "THREE", "FOUR", "FIVE", "SIX", "SEVEN",
 	private static final String[] NUMBER = new String[]{"", "ONE", "TWO", "THREE", "FOUR", "FIVE", "SIX", "SEVEN",
 			"EIGHT", "NINE"};
 			"EIGHT", "NINE"};
-	private static final String[] NUMBER_TEEN = new String[]{"TEN", "ELEVEN", "TWELEVE", "THIRTEEN", "FOURTEEN",
+	private static final String[] NUMBER_TEEN = new String[]{"TEN", "ELEVEN", "TWELVE", "THIRTEEN", "FOURTEEN",
 			"FIFTEEN", "SIXTEEN", "SEVENTEEN", "EIGHTEEN", "NINETEEN"};
 			"FIFTEEN", "SIXTEEN", "SEVENTEEN", "EIGHTEEN", "NINETEEN"};
 	private static final String[] NUMBER_TEN = new String[]{"TEN", "TWENTY", "THIRTY", "FORTY", "FIFTY", "SIXTY",
 	private static final String[] NUMBER_TEN = new String[]{"TEN", "TWENTY", "THIRTY", "FORTY", "FIFTY", "SIXTY",
 			"SEVENTY", "EIGHTY", "NINETY"};
 			"SEVENTY", "EIGHTY", "NINETY"};