From: drh Date: Mon, 4 Apr 2016 18:04:56 +0000 (+0000) Subject: Fix documentation typos. Comment changes only. No changes to code. X-Git-Tag: version-3.13.0~131 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=73a6bb5851f9f7998573f9c60d10465af04992bd;p=thirdparty%2Fsqlite.git Fix documentation typos. Comment changes only. No changes to code. FossilOrigin-Name: d5fc2f7f90f8cbd53810c7a445b0e9c9a0e39182 --- diff --git a/manifest b/manifest index 9cdd24ac24..d2d4f94a79 100644 --- a/manifest +++ b/manifest @@ -1,5 +1,5 @@ -C Improve\serror\smessages\sfrom\sthe\s'shell1-5.0'\stest. -D 2016-04-04T17:59:37.790 +C Fix\sdocumentation\stypos.\s\sComment\schanges\sonly.\s\sNo\schanges\sto\scode. +D 2016-04-04T18:04:56.616 F Makefile.in e812bb732d7af01baa09f1278bd4f4a2e3a09449 F Makefile.linux-gcc 7bc79876b875010e8c8f9502eb935ca92aa3c434 F Makefile.msc fe57d7e3e74fa383fd01ced796c0ffd966fc094a @@ -377,7 +377,7 @@ F src/resolve.c b8f7174e5f8c33c44ded3a25a973d0bb89228c20 F src/rowset.c 9fe4b3ad7cc00944386bb600233d8f523de07a6e F src/select.c 7849cee0a01952a9c93cd28989daedfa57731143 F src/shell.c b7922fa264f8c8d72a5ec6dd0b091e15a93c4de5 -F src/sqlite.h.in c46a7b85d3f37371cacea8f98ec825f5e52c420c +F src/sqlite.h.in 7f437b068314f053e6417d452c59f08d05092591 F src/sqlite3.rc 5121c9e10c3964d5755191c80dd1180c122fc3a8 F src/sqlite3ext.h 98f72cbfe00169c39089115427d06ea05fe4b4a2 F src/sqliteInt.h 594bf31a7a0cc788688ca947e562576e23bd7904 @@ -1482,7 +1482,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 4534ebf15fbcd6fe2028957b7aa591b6cd5da95f -R f892094f49f405a0a06a581ad52203d2 -U mistachkin -Z b9fa5f032554b733f702cb8290f0ece6 +P cefd36ff7b7f142bcebdb16b4d24ae274cdf2709 +R febb375a1eed9f049740185e3c47f862 +U drh +Z 64b7ed851fe55fe722cd357618c3eec9 diff --git a/manifest.uuid b/manifest.uuid index 27bdbd69e6..0654e5fabc 100644 --- a/manifest.uuid +++ b/manifest.uuid @@ -1 +1 @@ -cefd36ff7b7f142bcebdb16b4d24ae274cdf2709 \ No newline at end of file +d5fc2f7f90f8cbd53810c7a445b0e9c9a0e39182 \ No newline at end of file diff --git a/src/sqlite.h.in b/src/sqlite.h.in index b5f0e7f98e..b28e1ba14a 100644 --- a/src/sqlite.h.in +++ b/src/sqlite.h.in @@ -6761,7 +6761,7 @@ int sqlite3_db_status(sqlite3*, int op, int *pCur, int *pHiwtr, int resetFlg); ** database file in rollback mode databases. Any pages written as part of ** transaction rollback or database recovery operations are not included. ** If an IO or other error occurs while writing a page to disk, the effect -** on subsequent SQLITE_DBSTATUS_CACHE_WRITE requests is undefined). ^The +** on subsequent SQLITE_DBSTATUS_CACHE_WRITE requests is undefined.)^ ^The ** highwater mark associated with SQLITE_DBSTATUS_CACHE_WRITE is always 0. ** ** @@ -7137,7 +7137,7 @@ typedef struct sqlite3_backup sqlite3_backup; ** must be different or else sqlite3_backup_init(D,N,S,M) will fail with ** an error. ** -** ^A call to sqlite3_backup_init() will fail, returning SQLITE_ERROR, if +** ^A call to sqlite3_backup_init() will fail, returning NULL, if ** there is already a read or read-write transaction open on the ** destination database. **