aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authordrh <>2022-10-13 14:01:11 +0000
committerdrh <>2022-10-13 14:01:11 +0000
commit7ca4af6a9f9aa882747e8082c413b8b0c479b533 (patch)
treec595df5af2c3ce8c72bfcf73796aae12137af4f1 /src
parentd85d08398dbd06f6d8e1a96a58e6f538090c0fb9 (diff)
downloadsqlite-7ca4af6a9f9aa882747e8082c413b8b0c479b533.tar.gz
sqlite-7ca4af6a9f9aa882747e8082c413b8b0c479b533.zip
Fix a typo in the documentation of the OP_Column opcode.
[forum:/forumpost/a2b5bd6d43|Forum post a2b5bd6d43]. FossilOrigin-Name: 043e76e6166da5cf8e213cce46aaccb1f910e1fdbdb5556576eafb81b3bc5faa
Diffstat (limited to 'src')
-rw-r--r--src/vdbe.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vdbe.c b/src/vdbe.c
index b4a96468f..79b740095 100644
--- a/src/vdbe.c
+++ b/src/vdbe.c
@@ -2772,7 +2772,7 @@ case OP_Offset: { /* out3 */
** Interpret the data that cursor P1 points to as a structure built using
** the MakeRecord instruction. (See the MakeRecord opcode for additional
** information about the format of the data.) Extract the P2-th column
-** from this record. If there are less that (P2+1)
+** from this record. If there are less than (P2+1)
** values in the record, extract a NULL.
**
** The value extracted is stored in register P3.