diff options
author | peter.d.reid <peter.d.reid@noemail.net> | 2014-09-06 16:39:46 +0000 |
---|---|---|
committer | peter.d.reid <peter.d.reid@noemail.net> | 2014-09-06 16:39:46 +0000 |
commit | 60ec914c74ec79e4b73c004d1c21330be7916c99 (patch) | |
tree | 161a67068bbeecedccf7a6bb0e0f82ea2d86a6d2 /src/vdbetrace.c | |
parent | 60da72741ab642bd590480a397dead6a581000d3 (diff) | |
download | sqlite-60ec914c74ec79e4b73c004d1c21330be7916c99.tar.gz sqlite-60ec914c74ec79e4b73c004d1c21330be7916c99.zip |
Fix typos in comments. No code changes.
FossilOrigin-Name: e62aab5e9290503869e1f4d5e0fefd2b4dee0a69
Diffstat (limited to 'src/vdbetrace.c')
-rw-r--r-- | src/vdbetrace.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vdbetrace.c b/src/vdbetrace.c index 4a39e2652..362530a1d 100644 --- a/src/vdbetrace.c +++ b/src/vdbetrace.c @@ -64,7 +64,7 @@ static int findNextHostParameter(const char *zSql, int *pnToken){ ** ALGORITHM: Scan the input string looking for host parameters in any of ** these forms: ?, ?N, $A, @A, :A. Take care to avoid text within ** string literals, quoted identifier names, and comments. For text forms, -** the host parameter index is found by scanning the perpared +** the host parameter index is found by scanning the prepared ** statement for the corresponding OP_Variable opcode. Once the host ** parameter index is known, locate the value in p->aVar[]. Then render ** the value as a literal in place of the host parameter name. |