diff --git a/src/main/java/com/optimaize/langdetect/i18n/LdLocale.java b/src/main/java/com/optimaize/langdetect/i18n/LdLocale.java index c084f7b..0948fb2 100644 --- a/src/main/java/com/optimaize/langdetect/i18n/LdLocale.java +++ b/src/main/java/com/optimaize/langdetect/i18n/LdLocale.java @@ -34,8 +34,9 @@ * *
The java.util.Locale cannot be used because it has issues for historical reasons, notably the
* script code conversion for Hebrew, Yiddish and Indonesian, and more. If one needs a Locale,
- * it is simple to create one based on this object.
- * The ICU ULocale cannot be used because a) it has issues too (for our use case) and b) we're not
+ * it is simple to create one based on this object.
The ICU ULocale cannot be used because a) it has issues too (for our use case) and b) we're not * using ICU in here [yet].
* *This class does not perform any modifications on the input. The input is used as is, and the getters
diff --git a/src/main/java/com/optimaize/langdetect/ngram/NgramExtractor.java b/src/main/java/com/optimaize/langdetect/ngram/NgramExtractor.java
index 09c6beb..bd7249a 100644
--- a/src/main/java/com/optimaize/langdetect/ngram/NgramExtractor.java
+++ b/src/main/java/com/optimaize/langdetect/ngram/NgramExtractor.java
@@ -77,7 +77,7 @@ public List Example: extractSortedGrams("Foo bar", 2) => [Fo,oo,o , b,ba,ar] Example: extractSortedGrams("Foo bar", 2) => [Fo,oo,o , b,ba,ar]