From 49d9301b7745ce0911a4feb28125605c57fc8e07 Mon Sep 17 00:00:00 2001 From: Project Nayuki Date: Sun, 24 Jun 2018 20:51:36 +0000 Subject: [PATCH] Updated Javadoc text for QrSegmentAdvanced related to kanji encoding. --- java/io/nayuki/qrcodegen/QrSegmentAdvanced.java | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/java/io/nayuki/qrcodegen/QrSegmentAdvanced.java b/java/io/nayuki/qrcodegen/QrSegmentAdvanced.java index a57a006..d4b8c9c 100644 --- a/java/io/nayuki/qrcodegen/QrSegmentAdvanced.java +++ b/java/io/nayuki/qrcodegen/QrSegmentAdvanced.java @@ -228,9 +228,9 @@ public final class QrSegmentAdvanced { /** * Returns a segment representing the specified string encoded in kanji mode. - *

Note that broadly speaking, the set of encodable characters are {kanji used in Japan, hiragana, katakana, - * Asian punctuation, full-width ASCII}.
- * In particular, non-encodable characters are {normal ASCII, half-width katakana, more extensive Chinese hanzi}. + *

Note that broadly speaking, the set of encodable characters are {kanji used in Japan, + * hiragana, katakana, East Asian punctuation, full-width ASCII, Greek, Cyrillic}.
+ * Examples of non-encodable characters include {normal ASCII, half-width katakana, more extensive Chinese hanzi}. * @param text the text to be encoded, which must fall in the kanji mode subset of characters * @return a segment containing the data * @throws NullPointerException if the string is {@code null} @@ -252,9 +252,9 @@ public final class QrSegmentAdvanced { /** * Tests whether the specified text string can be encoded as a segment in kanji mode. - *

Note that broadly speaking, the set of encodable characters are {kanji used in Japan, hiragana, katakana, - * Asian punctuation, full-width ASCII}.
- * In particular, non-encodable characters are {normal ASCII, half-width katakana, more extensive Chinese hanzi}. + *

Note that broadly speaking, the set of encodable characters are {kanji used in Japan, + * hiragana, katakana, East Asian punctuation, full-width ASCII, Greek, Cyrillic}.
+ * Examples of non-encodable characters include {normal ASCII, half-width katakana, more extensive Chinese hanzi}. * @param text the string to test for encodability * @return {@code true} if and only if the string can be encoded in kanji mode * @throws NullPointerException if the string is {@code null}