| Index: third_party/sqlite/src/ext/fts3/fts3_porter.c
|
| diff --git a/third_party/sqlite/src/ext/fts3/fts3_porter.c b/third_party/sqlite/src/ext/fts3/fts3_porter.c
|
| index 933602a602b54e35477b5a9e2e250dc1cbcb1afe..b180ee251ddf786526ea83c5387d82c760c8f007 100644
|
| --- a/third_party/sqlite/src/ext/fts3/fts3_porter.c
|
| +++ b/third_party/sqlite/src/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++; }
|
|
|