From 243e3cb0fbc39b9fce7d86c05f939a6ec8524dcc Mon Sep 17 00:00:00 2001 From: Joe Mistachkin Date: Thu, 1 Mar 2018 18:09:02 +0000 Subject: [PATCH] Typo fixes in comments. No changes to code. --- ext/session/sqlite3session.h | 2 +- src/vdbe.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ext/session/sqlite3session.h b/ext/session/sqlite3session.h index 81b1ed06d6..407ec6a62b 100644 --- a/ext/session/sqlite3session.h +++ b/ext/session/sqlite3session.h @@ -22,7 +22,7 @@ typedef struct sqlite3_session sqlite3_session; /* ** CAPI3REF: Changeset Iterator Handle ** -** An instance of this object is as as a cursor for iterating +** An instance of this object acts as a cursor for iterating ** over the elements of a [changeset] or [patchset]. */ typedef struct sqlite3_changeset_iter sqlite3_changeset_iter; diff --git a/src/vdbe.c b/src/vdbe.c index 10715a8232..4a506dd592 100644 --- a/src/vdbe.c +++ b/src/vdbe.c @@ -2379,7 +2379,7 @@ case OP_IfNullRow: { /* jump */ ** P2 is the column number for the argument to the sqlite_offset() function. ** This opcode does not use P2 itself, but the P2 value is used by the ** code generator. The P1, P2, and P3 operands to this opcode are the -** as as for OP_Column. +** same as for OP_Column. ** ** This opcode is only available if SQLite is compiled with the ** -DSQLITE_ENABLE_OFFSET_SQL_FUNC option. -- 2.11.4.GIT