summaryrefslogtreecommitdiff
path: root/ext/fts2/fts2.c
diff options
context:
space:
mode:
Diffstat (limited to 'ext/fts2/fts2.c')
-rw-r--r--ext/fts2/fts2.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/fts2/fts2.c b/ext/fts2/fts2.c
index 93e03cd..f008ce6 100644
--- a/ext/fts2/fts2.c
+++ b/ext/fts2/fts2.c
@@ -6779,7 +6779,7 @@ void sqlite3Fts2IcuTokenizerModule(sqlite3_tokenizer_module const**ppModule);
int sqlite3Fts2InitHashTable(sqlite3 *, fts2Hash *, const char *);
/*
-** Initialise the fts2 extension. If this extension is built as part
+** Initialize the fts2 extension. If this extension is built as part
** of the sqlite library, then this function is called directly by
** SQLite. If fts2 is built as a dynamically loadable extension, this
** function is called by the sqlite3_extension_init() entry point.
@@ -6797,7 +6797,7 @@ int sqlite3Fts2Init(sqlite3 *db){
sqlite3Fts2IcuTokenizerModule(&pIcu);
#endif
- /* Allocate and initialise the hash-table used to store tokenizers. */
+ /* Allocate and initialize the hash-table used to store tokenizers. */
pHash = sqlite3_malloc(sizeof(fts2Hash));
if( !pHash ){
rc = SQLITE_NOMEM;