diff options
author | drh <drh@noemail.net> | 2006-01-10 19:45:49 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2006-01-10 19:45:49 +0000 |
commit | ee32e0aa279cd7ec812a41c622e57dcd2e35e440 (patch) | |
tree | dec182859b630c53fb2e844d4a0f91cac6afa329 /src | |
parent | 3c899a60c48f96d96d5c6348897b29f963bd37a2 (diff) | |
download | sqlite-ee32e0aa279cd7ec812a41c622e57dcd2e35e440.tar.gz sqlite-ee32e0aa279cd7ec812a41c622e57dcd2e35e440.zip |
More pedantic changes to comments in VDBE. No changes to code. Ticket #1596. (CVS 2908)
FossilOrigin-Name: 1cf6855430352ffbf921a977186345d7272fe272
Diffstat (limited to 'src')
-rw-r--r-- | src/vdbe.c | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/src/vdbe.c b/src/vdbe.c index 9f30970af..8fefed830 100644 --- a/src/vdbe.c +++ b/src/vdbe.c @@ -43,7 +43,7 @@ ** in this file for details. If in doubt, do not deviate from existing ** commenting and indentation practices when changing or adding code. ** -** $Id: vdbe.c,v 1.521 2006/01/10 18:44:08 drh Exp $ +** $Id: vdbe.c,v 1.522 2006/01/10 19:45:49 drh Exp $ */ #include "sqliteInt.h" #include "os.h" @@ -3653,9 +3653,9 @@ case OP_Next: { /* no-push */ /* Opcode: IdxInsert P1 * * ** -** The top of the stack holds a SQL index key made using the -** MakeIdxRec instruction. This opcode writes that key into the -** index P1. Data for the entry is nil. +** The top of the stack holds a SQL index key made using either the +** MakeIdxRec or MakeRecord instructions. This opcode writes that key +** into the index P1. Data for the entry is nil. ** ** This instruction only works for indices. The equivalent instruction ** for tables is OP_Insert. @@ -3684,7 +3684,8 @@ case OP_IdxInsert: { /* no-push */ /* Opcode: IdxDelete P1 * * ** -** The top of the stack is an index key built using the MakeIdxRec opcode. +** The top of the stack is an index key built using the either the +** MakeIdxRec or MakeRecord opcodes. ** This opcode removes that entry from the index. */ case OP_IdxDelete: { /* no-push */ |