Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(91)

Unified Diff: third_party/sqlite/sqlite-src-3100200/ext/fts3/fts3_porter.c

Issue 1610543003: [sql] Import reference version of SQLite 3.10.2. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/sqlite/sqlite-src-3100200/ext/fts3/fts3_porter.c
diff --git a/third_party/sqlite/sqlite-src-3080704/ext/fts3/fts3_porter.c b/third_party/sqlite/sqlite-src-3100200/ext/fts3/fts3_porter.c
similarity index 99%
copy from third_party/sqlite/sqlite-src-3080704/ext/fts3/fts3_porter.c
copy to third_party/sqlite/sqlite-src-3100200/ext/fts3/fts3_porter.c
index db175acdbbea8e1c6d29c40aeafc874b0edf0eb2..8fb4c25daa0a9ff27d0f3699ff6bd7e0a6e4c3a5 100644
--- a/third_party/sqlite/sqlite-src-3080704/ext/fts3/fts3_porter.c
+++ b/third_party/sqlite/sqlite-src-3100200/ext/fts3/fts3_porter.c
@@ -183,7 +183,7 @@ static int isVowel(const char *z){
** by a consonant.
**
** In this routine z[] is in reverse order. So we are really looking
-** for an instance of of a consonant followed by a vowel.
+** for an instance of a consonant followed by a vowel.
*/
static int m_gt_0(const char *z){
while( isVowel(z) ){ z++; }

Powered by Google App Engine
This is Rietveld 408576698