aboutsummaryrefslogtreecommitdiffstats
path: root/native/src
diff options
context:
space:
mode:
authorKen Wakasa <kwakasa@google.com>2012-03-09 02:34:52 -0800
committerAndroid (Google) Code Review <android-gerrit@google.com>2012-03-09 02:34:52 -0800
commite3a2deff82fcfb18f7f7d80d8cdce5467149772a (patch)
tree71bc92b0ce5e1eb664d4b2e0ad695c3b6df2f9d7 /native/src
parent0cf422fbb763e2672fb2f9e8e1e8af91d2e87cb3 (diff)
parent951ab9d7ebc594c330e377b5155654949e978117 (diff)
downloadlatinime-e3a2deff82fcfb18f7f7d80d8cdce5467149772a.tar.gz
latinime-e3a2deff82fcfb18f7f7d80d8cdce5467149772a.tar.xz
latinime-e3a2deff82fcfb18f7f7d80d8cdce5467149772a.zip
Merge "Fix typo."
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);