From 5e769a50ad8a3e3e9a831f22556075ae74e0af3c Mon Sep 17 00:00:00 2001 From: drh Date: Wed, 28 Sep 2016 16:05:53 +0000 Subject: [PATCH] Two more typo fixes in comments. FossilOrigin-Name: 40c0fb0af678797c39a99853f9f4102464c16f4b --- ext/session/sqlite3session.h | 4 ++-- manifest | 14 +++++++------- manifest.uuid | 2 +- src/vdbe.c | 2 +- 4 files changed, 11 insertions(+), 11 deletions(-) diff --git a/ext/session/sqlite3session.h b/ext/session/sqlite3session.h index 2507347251..c995d4ec28 100644 --- a/ext/session/sqlite3session.h +++ b/ext/session/sqlite3session.h @@ -423,7 +423,7 @@ int sqlite3session_isempty(sqlite3_session *pSession); ** [sqlite3changeset_invert()] functions, all changes within the changeset ** that apply to a single table are grouped together. This means that when ** an application iterates through a changeset using an iterator created by -** this function, all changes that relate to a single table are visted +** this function, all changes that relate to a single table are visited ** consecutively. There is no chance that the iterator will visit a change ** the applies to table X, then one for table Y, and then later on visit ** another change for table X. @@ -785,7 +785,7 @@ int sqlite3changegroup_new(sqlite3_changegroup **pp); ** apply to the same row as a change already present in the changegroup if ** the two rows have the same primary key. ** -** Changes to rows that that do not already appear in the changegroup are +** Changes to rows that do not already appear in the changegroup are ** simply copied into it. Or, if both the new changeset and the changegroup ** contain changes that apply to a single row, the final contents of the ** changegroup depends on the type of each change, as follows: diff --git a/manifest b/manifest index 8347c9b49c..9899126ad2 100644 --- a/manifest +++ b/manifest @@ -1,5 +1,5 @@ -C Fix\stypos\sin\scomments.\s\sNo\scode\schanges. -D 2016-09-28T16:04:22.705 +C Two\smore\stypo\sfixes\sin\scomments. +D 2016-09-28T16:05:53.347 F Makefile.in 6fd48ffcf7c2deea7499062d1f3747f986c19678 F Makefile.linux-gcc 7bc79876b875010e8c8f9502eb935ca92aa3c434 F Makefile.msc 5151cc64c4c05f3455f4f692ad11410a810d937f @@ -302,7 +302,7 @@ F ext/session/session_common.tcl 9b696a341cf1d3744823715ed92bb19749b6c3d4 F ext/session/sessionfault.test da273f2712b6411e85e71465a1733b8501dbf6f7 F ext/session/sessionfault2.test 04aa0bc9aa70ea43d8de82c4f648db4de1e990b0 F ext/session/sqlite3session.c 37485891b4add26cf61495df193c419f36556a32 -F ext/session/sqlite3session.h 7608f94340a6f7441cd6e618690644bb07b68127 +F ext/session/sqlite3session.h 9345166bd8f80562145586cf817f707de5ecada2 F ext/session/test_session.c eb0bd6c1ea791c1d66ee4ef94c16500dad936386 F ext/userauth/sqlite3userauth.h 19cb6f0e31316d0ee4afdfb7a85ef9da3333a220 F ext/userauth/user-auth.txt e6641021a9210364665fe625d067617d03f27b04 @@ -453,7 +453,7 @@ F src/update.c 8179e699dbd45b92934fd02d3d8e3732e8da8802 F src/utf.c 699001c79f28e48e9bcdf8a463da029ea660540c F src/util.c 3e2da6101888d073e79ecc6af5e0a2f70fa1e498 F src/vacuum.c 913970b9d86dd6c2b8063ef1af421880f1464ec3 -F src/vdbe.c 8b2e9f8846540ffcbda54d29172ed6ed1c8cb6d3 +F src/vdbe.c 6781329737f4bb140834cd32b15e93b83d60858e F src/vdbe.h c044be7050ac6bf596eecc6ab159f5dbc020a3b7 F src/vdbeInt.h d21f14721dd87975dc9e3bcdbf504f9c098cf611 F src/vdbeapi.c 794f80669e9e3b9b3edc78d80c15968985c7bf21 @@ -1525,7 +1525,7 @@ F vsixtest/vsixtest.tcl 6a9a6ab600c25a91a7acc6293828957a386a8a93 F vsixtest/vsixtest.vcxproj.data 2ed517e100c66dc455b492e1a33350c1b20fbcdc F vsixtest/vsixtest.vcxproj.filters 37e51ffedcdb064aad6ff33b6148725226cd608e F vsixtest/vsixtest_TemporaryKey.pfx e5b1b036facdb453873e7084e1cae9102ccc67a0 -P bf903b2ecac5d7b25c9cc899cae41f1d69aafe4e -R 5c7411c7a827679142aabebf874123be +P 5bbd071d57a8048e2ca17bf97761e4f27fc5a6bf +R bf0761c46088be2deeef7ae66a06e596 U drh -Z 6ce2a81d24fa25965c47db489fd948d3 +Z f28f9e255c7712d05cf98e2e813edaa6 diff --git a/manifest.uuid b/manifest.uuid index 065a325cc5..dd204bcb38 100644 --- a/manifest.uuid +++ b/manifest.uuid @@ -1 +1 @@ -5bbd071d57a8048e2ca17bf97761e4f27fc5a6bf \ No newline at end of file +40c0fb0af678797c39a99853f9f4102464c16f4b \ No newline at end of file diff --git a/src/vdbe.c b/src/vdbe.c index 5520ad7de7..c32e0ea43e 100644 --- a/src/vdbe.c +++ b/src/vdbe.c @@ -4466,7 +4466,7 @@ case OP_InsertInt: { ** P1 must not be pseudo-table. It has to be a real table with ** multiple rows. ** -** If P4 is not NULL then it points to a Table structure. In this case either +** If P4 is not NULL then it points to a Table object. In this case either ** the update or pre-update hook, or both, may be invoked. The P1 cursor must ** have been positioned using OP_NotFound prior to invoking this opcode in ** this case. Specifically, if one is configured, the pre-update hook is