aboutsummaryrefslogtreecommitdiff
path: root/src/test_intarray.c
diff options
context:
space:
mode:
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 */