aboutsummaryrefslogtreecommitdiff
path: root/src/func.c
diff options
context:
space:
mode:
authorpeter.d.reid <peter.d.reid@noemail.net>2014-09-06 16:39:46 +0000
committerpeter.d.reid <peter.d.reid@noemail.net>2014-09-06 16:39:46 +0000
commit60ec914c74ec79e4b73c004d1c21330be7916c99 (patch)
tree161a67068bbeecedccf7a6bb0e0f82ea2d86a6d2 /src/func.c
parent60da72741ab642bd590480a397dead6a581000d3 (diff)
downloadsqlite-60ec914c74ec79e4b73c004d1c21330be7916c99.tar.gz
sqlite-60ec914c74ec79e4b73c004d1c21330be7916c99.zip
Fix typos in comments. No code changes.
FossilOrigin-Name: e62aab5e9290503869e1f4d5e0fefd2b4dee0a69
Diffstat (limited to 'src/func.c')
-rw-r--r--src/func.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/func.c b/src/func.c
index dbc837554..e338ab842 100644
--- a/src/func.c
+++ b/src/func.c
@@ -9,7 +9,7 @@
** May you share freely, never taking more than you give.
**
*************************************************************************
-** This file contains the C-language implementions for many of the SQL
+** This file contains the C-language implementations for many of the SQL
** functions of SQLite. (Some function, and in particular the date and
** time functions, are implemented separately.)
*/
@@ -1638,7 +1638,7 @@ int sqlite3IsLikeFunction(sqlite3 *db, Expr *pExpr, int *pIsNocase, char *aWc){
}
/*
-** All all of the FuncDef structures in the aBuiltinFunc[] array above
+** All of the FuncDef structures in the aBuiltinFunc[] array above
** to the global function hash table. This occurs at start-time (as
** a consequence of calling sqlite3_initialize()).
**