diff options
author | 2013-04-08 07:14:15 -0700 | |
---|---|---|
committer | 2013-04-08 07:14:15 -0700 | |
commit | f71b96406391fc00c1d3dc45e6b3e827f3595842 (patch) | |
tree | b2b0a4258c47880bbd237d93de2a6c3f8616df7c /java | |
parent | a271f165b92069a7684a1dfc2c43533dc79fccdd (diff) | |
parent | d17c8bd9297607e7318ad2470ae72a27b1d28ec1 (diff) | |
download | latinime-f71b96406391fc00c1d3dc45e6b3e827f3595842.tar.gz latinime-f71b96406391fc00c1d3dc45e6b3e827f3595842.tar.xz latinime-f71b96406391fc00c1d3dc45e6b3e827f3595842.zip |
am d17c8bd9: Update comments
* commit 'd17c8bd9297607e7318ad2470ae72a27b1d28ec1':
Update comments
Diffstat (limited to 'java')
-rw-r--r-- | java/res/values/strings.xml | 6 | ||||
-rw-r--r-- | java/src/com/android/inputmethod/latin/spellcheck/AndroidWordLevelSpellCheckerSession.java | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/java/res/values/strings.xml b/java/res/values/strings.xml index 689205ec1..201fc7030 100644 --- a/java/res/values/strings.xml +++ b/java/res/values/strings.xml @@ -350,10 +350,10 @@ <!-- Inform the user that a particular language has an available dictionary --> <string name="has_dictionary">Dictionary available</string> - <!-- Preferences item for enabling to send user statistics to Google --> + <!-- Preferences item for enabling to send user statistics for development only diagnostics --> <string name="prefs_enable_log">Enable user feedback</string> - <!-- Description for enabling to send user statistics to Google --> - <string name="prefs_description_log">Help improve this input method editor by automatically sending usage statistics and crash reports to Google.</string> + <!-- Description for enabling to send user statistics for development only diagnostics --> + <string name="prefs_description_log">Help improve this input method editor by automatically sending usage statistics and crash reports</string> <!-- Title of the item to change the keyboard theme [CHAR LIMIT=20]--> <string name="keyboard_layout">Keyboard theme</string> diff --git a/java/src/com/android/inputmethod/latin/spellcheck/AndroidWordLevelSpellCheckerSession.java b/java/src/com/android/inputmethod/latin/spellcheck/AndroidWordLevelSpellCheckerSession.java index 96cd3ecfd..b15063235 100644 --- a/java/src/com/android/inputmethod/latin/spellcheck/AndroidWordLevelSpellCheckerSession.java +++ b/java/src/com/android/inputmethod/latin/spellcheck/AndroidWordLevelSpellCheckerSession.java @@ -150,7 +150,7 @@ public abstract class AndroidWordLevelSpellCheckerSession extends Session { // Greek letters are either in the 370~3FF range (Greek & Coptic), or in the // 1F00~1FFF range (Greek extended). Our dictionary contains both sort of characters. // Our dictionary also contains a few words with 0xF2; it would be best to check - // if that's correct, but a Google search does return results for these words so + // if that's correct, but a web search does return results for these words so // they are probably okay. return (codePoint >= 0x370 && codePoint <= 0x3FF) || (codePoint >= 0x1F00 && codePoint <= 0x1FFF) |