From: drh Date: Wed, 6 Aug 2014 01:08:07 +0000 (+0000) Subject: Fix typos in the opcode documentation. Comment changes only. No changes X-Git-Tag: version-3.8.6~32 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=bc5cf3813ea1bf56ed19a35028061e779827fffc;p=thirdparty%2Fsqlite.git Fix typos in the opcode documentation. Comment changes only. No changes to code. FossilOrigin-Name: 717245d48714c08156c9b7636aaa6c3a402bad66 --- diff --git a/manifest b/manifest index 829712eb8e..a945d8dafc 100644 --- a/manifest +++ b/manifest @@ -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. -D 2014-08-06T00:29:06.807 +C Fix\stypos\sin\sthe\sopcode\sdocumentation.\s\sComment\schanges\sonly.\s\sNo\schanges\nto\scode. +D 2014-08-06T01:08:07.269 F Makefile.arm-wince-mingw32ce-gcc d6df77f1f48d690bd73162294bbba7f59507c72f F Makefile.in 5eb79e334a5de69c87740edd56af6527dd219308 F Makefile.linux-gcc 91d710bdc4998cb015f39edf3cb314ec4f4d7e23 @@ -283,7 +283,7 @@ F src/update.c ea336ce7b8b3fc5e316ba8f082e6445babf81059 F src/utf.c a0314e637768a030e6e84a957d0c4f6ba910cc05 F src/util.c 3076bdd51cdbf60a6e2e57fada745be37133c73e F src/vacuum.c 3728d74919d4fb1356f9e9a13e27773db60b7179 -F src/vdbe.c aa93cf7a215a37d1c7ae565202a44869c78dbf8d +F src/vdbe.c 2db817cf7c51fa775ecc68160352aefc3d9870f7 F src/vdbe.h c63fad052c9e7388d551e556e119c0bcf6bebdf8 F src/vdbeInt.h f5513f2b5ac1e2c5128996c7ea23add256a301df F src/vdbeapi.c 24e40422382beb774daab11fe9fe9d37e8a04949 @@ -1185,7 +1185,7 @@ F tool/vdbe_profile.tcl 67746953071a9f8f2f668b73fe899074e2c6d8c1 F tool/warnings-clang.sh f6aa929dc20ef1f856af04a730772f59283631d4 F tool/warnings.sh 0abfd78ceb09b7f7c27c688c8e3fe93268a13b32 F tool/win/sqlite.vsix deb315d026cc8400325c5863eef847784a219a2f -P 29ba812825bf06ef230f2480bba0579653f0a52d -R f634869bc839ef6a8575d1173c369416 +P 0ad1ed8ef0b5fb5d8db44479373b2b93d8fcfd66 +R 1045cc0c95f68e0f0e2e47642b0ec158 U drh -Z 8e016893764edede1871bf058b88fac4 +Z fecab6dfa8d111d2725130892a38124f diff --git a/manifest.uuid b/manifest.uuid index 741aa44ffb..c81900087c 100644 --- a/manifest.uuid +++ b/manifest.uuid @@ -1 +1 @@ -0ad1ed8ef0b5fb5d8db44479373b2b93d8fcfd66 \ No newline at end of file +717245d48714c08156c9b7636aaa6c3a402bad66 \ No newline at end of file diff --git a/src/vdbe.c b/src/vdbe.c index 16d9eee969..6c46d76569 100644 --- a/src/vdbe.c +++ b/src/vdbe.c @@ -796,7 +796,7 @@ case OP_InitCoroutine: { /* jump */ /* 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. ** After the jump, register P1 becomes undefined. ** @@ -989,7 +989,7 @@ case OP_Real: { /* same as TK_FLOAT, out2-prerelease */ ** Synopsis: r[P2]='P4' ** ** 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 ** 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. ** ** 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. ** ** 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 ** 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 -** 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 ** incremented (otherwise not). @@ -4280,7 +4280,7 @@ case OP_ResetCount: { ** Synopsis: if key(P1)!=trim(r[P3],P4) goto P2 ** ** 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 ** of r[P3] and the sorter record are compared. ** @@ -5609,7 +5609,7 @@ case OP_IfPos: { /* jump, in1 */ /* Opcode: IfNeg P1 P2 P3 * * ** 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. */ case OP_IfNeg: { /* jump, in1 */