commit | 951ab9d7ebc594c330e377b5155654949e978117 | [log] [tgz] |
---|---|---|
author | Ken Wakasa <kwakasa@google.com> | Fri Mar 09 19:18:59 2012 +0900 |
committer | Ken Wakasa <kwakasa@google.com> | Fri Mar 09 19:18:59 2012 +0900 |
tree | 61335b475871762c56f60917a36bff3698f9291c | |
parent | dbd140504d0f1c6b02998d0899efc853e78a3966 [diff] |
Fix typo. Change-Id: Ia18cd090fd81022041854ce190e36eca49c6b04a
diff --git a/native/src/unigram_dictionary.cpp b/native/src/unigram_dictionary.cpp index 10aa7e2..6c2c892 100644 --- a/native/src/unigram_dictionary.cpp +++ b/native/src/unigram_dictionary.cpp
@@ -58,7 +58,7 @@ return sizeof(*codes) * MAX_PROXIMITY_CHARS * codesSize; } -// TODO: This needs to take an const unsigned short* and not tinker with its contents +// TODO: This needs to take a const unsigned short* and not tinker with its contents static inline void addWord( unsigned short *word, int length, int frequency, WordsPriorityQueue *queue) { queue->push(frequency, word, length);
diff --git a/tools/makedict/src/com/android/inputmethod/latin/PendingAttribute.java b/tools/makedict/src/com/android/inputmethod/latin/PendingAttribute.java index e502021..cf66eef 100644 --- a/tools/makedict/src/com/android/inputmethod/latin/PendingAttribute.java +++ b/tools/makedict/src/com/android/inputmethod/latin/PendingAttribute.java
@@ -19,7 +19,7 @@ /** * A not-yet-resolved attribute. * - * An attribute is either a bigram or an shortcut. + * An attribute is either a bigram or a shortcut. * All instances of this class are always immutable. */ public class PendingAttribute {