aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authordrh <drh@noemail.net>2016-02-03 19:52:06 +0000
committerdrh <drh@noemail.net>2016-02-03 19:52:06 +0000
commit19d720d3a7062c1ee5f5328299b4b0dee8383eca (patch)
treee5643dc7336ca776b771bc3b441fd26e2415468a /src
parent6841b1cb3dfd12edbc1f147bdc08887199f11cce (diff)
downloadsqlite-19d720d3a7062c1ee5f5328299b4b0dee8383eca.tar.gz
sqlite-19d720d3a7062c1ee5f5328299b4b0dee8383eca.zip
Fix markup errors in comments used to generate the documentation - specifically
in the documentation on the OP_Seek opcode. FossilOrigin-Name: ef252bc4b59d272460aaebdc0d4b8e347b0d25a8
Diffstat (limited to 'src')
-rw-r--r--src/vdbe.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/vdbe.c b/src/vdbe.c
index 1cf4cb16a..62ad86d4f 100644
--- a/src/vdbe.c
+++ b/src/vdbe.c
@@ -4960,8 +4960,8 @@ case OP_IdxDelete: {
** occur, no unnecessary I/O happens.
**
** P4 may be an array of integers (type P4_INTARRAY) containing
-** one entry for each column in the P3 table. If array entry a[i]
-** is non-zero, then reading column (a[i]-1) from cursor P3 is
+** one entry for each column in the P3 table. If array entry a(i)
+** is non-zero, then reading column a(i)-1 from cursor P3 is
** equivalent to performing the deferred seek and then reading column i
** from P1. This information is stored in P3 and used to redirect
** reads against P3 over to P1, thus possibly avoiding the need to