]> git.ipfire.org Git - thirdparty/sqlite.git/commitdiff
Fix a couple comment typos. No changes to code.
authormistachkin <mistachkin@noemail.net>
Sat, 28 Jan 2017 19:53:51 +0000 (19:53 +0000)
committermistachkin <mistachkin@noemail.net>
Sat, 28 Jan 2017 19:53:51 +0000 (19:53 +0000)
FossilOrigin-Name: 2a2e7d86b275c970726f642a37a098950a3b906e

manifest
manifest.uuid
src/sqlite.h.in

index ddbf2ea5df2f2f9cfd532635c0fb5766978c1eb4..02a68de80af2ac6ae607202bd0430bc705974935 100644 (file)
--- a/manifest
+++ b/manifest
@@ -1,5 +1,5 @@
-C Avoid\sredundant\stable\sb-tree\scursor\sseeks\sin\sUPDATE\sstatements\sthat\suse\sthe\ntwo-pass\sstrategy.
-D 2017-01-28T19:45:34.617
+C Fix\sa\scouple\scomment\stypos.\s\sNo\schanges\sto\scode.
+D 2017-01-28T19:53:51.613
 F Makefile.in 5f415e7867296d678fed2e6779aea10c1318b4bc
 F Makefile.linux-gcc 7bc79876b875010e8c8f9502eb935ca92aa3c434
 F Makefile.msc b8ca53350ae545e3562403d5da2a69cec79308da
@@ -393,7 +393,7 @@ F src/resolve.c f9bc0de45a30a450da47b3766de00be89bf9be79
 F src/rowset.c 7b7e7e479212e65b723bf40128c7b36dc5afdfac
 F src/select.c 3856db523b942062bca8722ba03b61c324ff94d6
 F src/shell.c a84e453c213f3e0d6935a582024da4e242f85a19
-F src/sqlite.h.in a14cd1f946b9565c4d801c4adeeaa4543fbd6eb4
+F src/sqlite.h.in 8fd2b1a4e4aac023d4533313442528b81105fab3
 F src/sqlite3.rc 5121c9e10c3964d5755191c80dd1180c122fc3a8
 F src/sqlite3ext.h 8648034aa702469afb553231677306cc6492a1ae
 F src/sqliteInt.h c246370f9d8de3af36052d7860cd35c0e2daea6a
@@ -1548,7 +1548,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 426b440a5745f9c431c6a3d9ba542af61a6a83fb
-R cb9f34739a33405b5f0617b1ee3426fc
-U dan
-Z 2ac8b1778a518257277e1132fa6dad3a
+P dc555b1039c6930f6d15355c698ff917a85e8056
+R 85ad9229fc7d18817a896fd231c69045
+U mistachkin
+Z 8ca9913e082eb1ea0368f4a7e44ff324
index 0e49c05605a1e9da6127614e85d550139d86a2f4..d337122ecd0bc1f98307cc7efd8a62b01b55239f 100644 (file)
@@ -1 +1 @@
-dc555b1039c6930f6d15355c698ff917a85e8056
\ No newline at end of file
+2a2e7d86b275c970726f642a37a098950a3b906e
\ No newline at end of file
index d80de6d5191eef726b9f278f83dc4685149ecdc8..b0ec7f7e15c2d3d4f9493d9c00ca9da56af9c007 100644 (file)
@@ -6199,12 +6199,12 @@ typedef struct sqlite3_blob sqlite3_blob;
 ** [database connection] error code and message accessible via 
 ** [sqlite3_errcode()] and [sqlite3_errmsg()] and related functions. 
 **
-** A BLOB referenced by sqlite3_blob_open() and be read using the
+** A BLOB referenced by sqlite3_blob_open() may be read using the
 ** [sqlite3_blob_read()] interface and modified by using
 ** [sqlite3_blob_write()].  The [BLOB handle] can be moved to a
 ** different row of the same table using the [sqlite3_blob_reopen()]
 ** interface.  However, the column, table, or database of a [BLOB handle]
-** cannot be changed once after the [BLOB handle] is opened.
+** cannot be changed after the [BLOB handle] is opened.
 **
 ** ^(If the row that a BLOB handle points to is modified by an
 ** [UPDATE], [DELETE], or by [ON CONFLICT] side-effects