aboutsummaryrefslogtreecommitdiff
path: root/src/test_intarray.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/test_intarray.c
parent60da72741ab642bd590480a397dead6a581000d3 (diff)
downloadsqlite-60ec914c74ec79e4b73c004d1c21330be7916c99.tar.gz
sqlite-60ec914c74ec79e4b73c004d1c21330be7916c99.zip
Fix typos in comments. No code changes.
FossilOrigin-Name: e62aab5e9290503869e1f4d5e0fefd2b4dee0a69
Diffstat (limited to 'src/test_intarray.c')
-rw-r--r--src/test_intarray.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test_intarray.c b/src/test_intarray.c
index efcd21d40..7235fbced 100644
--- a/src/test_intarray.c
+++ b/src/test_intarray.c
@@ -37,13 +37,13 @@ struct sqlite3_intarray {
typedef struct intarray_vtab intarray_vtab;
typedef struct intarray_cursor intarray_cursor;
-/* A intarray table object */
+/* An intarray table object */
struct intarray_vtab {
sqlite3_vtab base; /* Base class */
sqlite3_intarray *pContent; /* Content of the integer array */
};
-/* A intarray cursor object */
+/* An intarray cursor object */
struct intarray_cursor {
sqlite3_vtab_cursor base; /* Base class */
int i; /* Current cursor position */