1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-08 14:02:16 +03:00

Fix typos in the opcode documentation. Comment changes only. No changes

to code.

FossilOrigin-Name: 717245d48714c08156c9b7636aaa6c3a402bad66
This commit is contained in:
drh
2014-08-06 01:08:07 +00:00
parent 0c4de2d96d
commit bc5cf3813e
3 changed files with 13 additions and 13 deletions

View File

@@ -1,5 +1,5 @@
C A\ssimpler\sfix\sfor\sticket\s[3a88d85f36704eebe1]\s-\sone\sthat\suses\sless\scode.\nThe\serror\smessage\sis\snot\squite\sas\sgood,\sbut\sas\sthis\serror\shas\sapparently\nnot\spreviously\soccurred\sin\sover\s8\syears\sof\sheavy\suse,\sthat\sis\snot\sseen\sas\na\sserious\sproblem. C Fix\stypos\sin\sthe\sopcode\sdocumentation.\s\sComment\schanges\sonly.\s\sNo\schanges\nto\scode.
D 2014-08-06T00:29:06.807 D 2014-08-06T01:08:07.269
F Makefile.arm-wince-mingw32ce-gcc d6df77f1f48d690bd73162294bbba7f59507c72f F Makefile.arm-wince-mingw32ce-gcc d6df77f1f48d690bd73162294bbba7f59507c72f
F Makefile.in 5eb79e334a5de69c87740edd56af6527dd219308 F Makefile.in 5eb79e334a5de69c87740edd56af6527dd219308
F Makefile.linux-gcc 91d710bdc4998cb015f39edf3cb314ec4f4d7e23 F Makefile.linux-gcc 91d710bdc4998cb015f39edf3cb314ec4f4d7e23
@@ -283,7 +283,7 @@ F src/update.c ea336ce7b8b3fc5e316ba8f082e6445babf81059
F src/utf.c a0314e637768a030e6e84a957d0c4f6ba910cc05 F src/utf.c a0314e637768a030e6e84a957d0c4f6ba910cc05
F src/util.c 3076bdd51cdbf60a6e2e57fada745be37133c73e F src/util.c 3076bdd51cdbf60a6e2e57fada745be37133c73e
F src/vacuum.c 3728d74919d4fb1356f9e9a13e27773db60b7179 F src/vacuum.c 3728d74919d4fb1356f9e9a13e27773db60b7179
F src/vdbe.c aa93cf7a215a37d1c7ae565202a44869c78dbf8d F src/vdbe.c 2db817cf7c51fa775ecc68160352aefc3d9870f7
F src/vdbe.h c63fad052c9e7388d551e556e119c0bcf6bebdf8 F src/vdbe.h c63fad052c9e7388d551e556e119c0bcf6bebdf8
F src/vdbeInt.h f5513f2b5ac1e2c5128996c7ea23add256a301df F src/vdbeInt.h f5513f2b5ac1e2c5128996c7ea23add256a301df
F src/vdbeapi.c 24e40422382beb774daab11fe9fe9d37e8a04949 F src/vdbeapi.c 24e40422382beb774daab11fe9fe9d37e8a04949
@@ -1185,7 +1185,7 @@ F tool/vdbe_profile.tcl 67746953071a9f8f2f668b73fe899074e2c6d8c1
F tool/warnings-clang.sh f6aa929dc20ef1f856af04a730772f59283631d4 F tool/warnings-clang.sh f6aa929dc20ef1f856af04a730772f59283631d4
F tool/warnings.sh 0abfd78ceb09b7f7c27c688c8e3fe93268a13b32 F tool/warnings.sh 0abfd78ceb09b7f7c27c688c8e3fe93268a13b32
F tool/win/sqlite.vsix deb315d026cc8400325c5863eef847784a219a2f F tool/win/sqlite.vsix deb315d026cc8400325c5863eef847784a219a2f
P 29ba812825bf06ef230f2480bba0579653f0a52d P 0ad1ed8ef0b5fb5d8db44479373b2b93d8fcfd66
R f634869bc839ef6a8575d1173c369416 R 1045cc0c95f68e0f0e2e47642b0ec158
U drh U drh
Z 8e016893764edede1871bf058b88fac4 Z fecab6dfa8d111d2725130892a38124f

View File

@@ -1 +1 @@
0ad1ed8ef0b5fb5d8db44479373b2b93d8fcfd66 717245d48714c08156c9b7636aaa6c3a402bad66

View File

@@ -796,7 +796,7 @@ case OP_InitCoroutine: { /* jump */
/* Opcode: EndCoroutine P1 * * * * /* Opcode: EndCoroutine P1 * * * *
** **
** The instruction at the address in register P1 is an Yield. ** The instruction at the address in register P1 is a Yield.
** Jump to the P2 parameter of that Yield. ** Jump to the P2 parameter of that Yield.
** After the jump, register P1 becomes undefined. ** After the jump, register P1 becomes undefined.
** **
@@ -989,7 +989,7 @@ case OP_Real: { /* same as TK_FLOAT, out2-prerelease */
** Synopsis: r[P2]='P4' ** Synopsis: r[P2]='P4'
** **
** P4 points to a nul terminated UTF-8 string. This opcode is transformed ** P4 points to a nul terminated UTF-8 string. This opcode is transformed
** into an OP_String before it is executed for the first time. During ** into a String before it is executed for the first time. During
** this transformation, the length of string P4 is computed and stored ** this transformation, the length of string P4 is computed and stored
** as the P1 parameter. ** as the P1 parameter.
*/ */
@@ -3513,7 +3513,7 @@ case OP_Close: {
** greater than or equal to the key and P2 is not zero, then jump to P2. ** greater than or equal to the key and P2 is not zero, then jump to P2.
** **
** This opcode leaves the cursor configured to move in forward order, ** This opcode leaves the cursor configured to move in forward order,
** from the begining toward the end. In other words, the cursor is ** from the beginning toward the end. In other words, the cursor is
** configured to use Next, not Prev. ** configured to use Next, not Prev.
** **
** See also: Found, NotFound, SeekLt, SeekGt, SeekLe ** See also: Found, NotFound, SeekLt, SeekGt, SeekLe
@@ -4217,7 +4217,7 @@ case OP_InsertInt: {
** The cursor will be left pointing at either the next or the previous ** The cursor will be left pointing at either the next or the previous
** record in the table. If it is left pointing at the next record, then ** record in the table. If it is left pointing at the next record, then
** the next Next instruction will be a no-op. Hence it is OK to delete ** the next Next instruction will be a no-op. Hence it is OK to delete
** a record from within an Next loop. ** a record from within a Next loop.
** **
** If the OPFLAG_NCHANGE flag of P2 is set, then the row change count is ** If the OPFLAG_NCHANGE flag of P2 is set, then the row change count is
** incremented (otherwise not). ** incremented (otherwise not).
@@ -4280,7 +4280,7 @@ case OP_ResetCount: {
** Synopsis: if key(P1)!=trim(r[P3],P4) goto P2 ** Synopsis: if key(P1)!=trim(r[P3],P4) goto P2
** **
** P1 is a sorter cursor. This instruction compares a prefix of the ** P1 is a sorter cursor. This instruction compares a prefix of the
** the record blob in register P3 against a prefix of the entry that ** record blob in register P3 against a prefix of the entry that
** the sorter cursor currently points to. Only the first P4 fields ** the sorter cursor currently points to. Only the first P4 fields
** of r[P3] and the sorter record are compared. ** of r[P3] and the sorter record are compared.
** **
@@ -5609,7 +5609,7 @@ case OP_IfPos: { /* jump, in1 */
/* Opcode: IfNeg P1 P2 P3 * * /* Opcode: IfNeg P1 P2 P3 * *
** Synopsis: r[P1]+=P3, if r[P1]<0 goto P2 ** Synopsis: r[P1]+=P3, if r[P1]<0 goto P2
** **
** Register P1 must contain an intger. Add literal P3 to the value in ** Register P1 must contain an integer. Add literal P3 to the value in
** register P1 then if the value of register P1 is less than zero, jump to P2. ** register P1 then if the value of register P1 is less than zero, jump to P2.
*/ */
case OP_IfNeg: { /* jump, in1 */ case OP_IfNeg: { /* jump, in1 */