aboutsummaryrefslogtreecommitdiffstats
path: root/native/src
diff options
context:
space:
mode:
authorKen Wakasa <kwakasa@google.com>2012-03-09 19:18:59 +0900
committerKen Wakasa <kwakasa@google.com>2012-03-09 19:18:59 +0900
commit951ab9d7ebc594c330e377b5155654949e978117 (patch)
tree61335b475871762c56f60917a36bff3698f9291c /native/src
parentdbd140504d0f1c6b02998d0899efc853e78a3966 (diff)
downloadlatinime-951ab9d7ebc594c330e377b5155654949e978117.tar.gz
latinime-951ab9d7ebc594c330e377b5155654949e978117.tar.xz
latinime-951ab9d7ebc594c330e377b5155654949e978117.zip
Fix typo.
Change-Id: Ia18cd090fd81022041854ce190e36eca49c6b04a
Diffstat (limited to 'native/src')
-rw-r--r--native/src/unigram_dictionary.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/native/src/unigram_dictionary.cpp b/native/src/unigram_dictionary.cpp
index 10aa7e296..6c2c89231 100644
--- a/native/src/unigram_dictionary.cpp
+++ b/native/src/unigram_dictionary.cpp
@@ -58,7 +58,7 @@ static inline unsigned int getCodesBufferSize(const int *codes, const int codesS
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);