aboutsummaryrefslogtreecommitdiff
path: root/src/callback.c
diff options
context:
space:
mode:
authorshane <shane@noemail.net>2009-03-05 04:20:31 +0000
committershane <shane@noemail.net>2009-03-05 04:20:31 +0000
commitbe21779385d54062ff3b75c2e4881c986d7798a5 (patch)
tree93f4b028f27c7fc03bf78fbbc9b0d17d0e23e8a6 /src/callback.c
parentc0688ea1728706ba6812f9b21384ad413a09eca2 (diff)
downloadsqlite-be21779385d54062ff3b75c2e4881c986d7798a5.tar.gz
sqlite-be21779385d54062ff3b75c2e4881c986d7798a5.zip
Corrected typos and misspellings. Ticket #3702. (CVS 6336)
FossilOrigin-Name: 6404afa0c515a6536fc2e878d4fb451e4dc06942
Diffstat (limited to 'src/callback.c')
-rw-r--r--src/callback.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/callback.c b/src/callback.c
index 0c1e657f9..ca41c08f4 100644
--- a/src/callback.c
+++ b/src/callback.c
@@ -13,7 +13,7 @@
** This file contains functions used to access the internal hash tables
** of user defined functions and collation sequences.
**
-** $Id: callback.c,v 1.35 2009/01/31 22:28:49 drh Exp $
+** $Id: callback.c,v 1.36 2009/03/05 04:20:32 shane Exp $
*/
#include "sqliteInt.h"
@@ -175,7 +175,7 @@ static CollSeq *findCollSeqEntry(
pColl[0].zName[nName] = 0;
pDel = sqlite3HashInsert(&db->aCollSeq, pColl[0].zName, nName, pColl);
- /* If a malloc() failure occured in sqlite3HashInsert(), it will
+ /* If a malloc() failure occurred in sqlite3HashInsert(), it will
** return the pColl pointer to be deleted (because it wasn't added
** to the hash table).
*/