]> git.ipfire.org Git - thirdparty/sqlite.git/commitdiff
Spelling improvements, in comments only
authorlarrybr <larrybr@noemail.net>
Tue, 24 Oct 2023 15:11:55 +0000 (15:11 +0000)
committerlarrybr <larrybr@noemail.net>
Tue, 24 Oct 2023 15:11:55 +0000 (15:11 +0000)
FossilOrigin-Name: 9ee25eeaf17124dbe34b961384e74c1ae239ee1798bb01907938600ed6b4066f

manifest
manifest.uuid
src/sqlite.h.in

index e835acc8d2e453c3ba3872ac50c8ac5c3bea843c..3c9098773b610f07bc39f9c41634cb4aaafb61a6 100644 (file)
--- a/manifest
+++ b/manifest
@@ -1,5 +1,5 @@
 C Spelling\simprovements,\sin\scomments\sonly
-D 2023-10-24T15:07:28.933
+D 2023-10-24T15:11:55.292
 F .fossil-settings/empty-dirs dbb81e8fc0401ac46a1491ab34a7f2c7c0452f2f06b54ebb845d024ca8283ef1
 F .fossil-settings/ignore-glob 35175cdfcf539b2318cb04a9901442804be81cd677d8b889fcc9149c21f239ea
 F LICENSE.md df5091916dbb40e6e9686186587125e1b2ff51f022cc334e886c19a0e9982724
@@ -723,7 +723,7 @@ F src/resolve.c 31229276a8eb5b5de1428cd2d80f6f1cf8ffc5248be25e47cf575df12f1b8f23
 F src/rowset.c 8432130e6c344b3401a8874c3cb49fefe6873fec593294de077afea2dce5ec97
 F src/select.c f9d8ece7f0742d7b835efa9590ccda4eccee5b9def7581ec94f556e3c52efe51
 F src/shell.c.in 66995332610ed7d47483152c4c78810519ca9ac8b2f93ee884127ce330ca12e8
-F src/sqlite.h.in cd71e0cc6a301796c47d7944222b82cb75ac82fa9ed8879bc647c5bb85e07052
+F src/sqlite.h.in e9047d63745272ebe5c91bf994f9bbc608edfbc3b0be9873062e9a69657bf984
 F src/sqlite3.rc 5121c9e10c3964d5755191c80dd1180c122fc3a8
 F src/sqlite3ext.h 2f30b2671f4c03cd27a43f039e11251391066c97d11385f5f963bb40b03038ac
 F src/sqliteInt.h cf6646e8694a63749096e1f086767a2c1920dca9848ec2dbe9f7bfb961d322ef
@@ -2138,8 +2138,8 @@ F vsixtest/vsixtest.tcl 6a9a6ab600c25a91a7acc6293828957a386a8a93
 F vsixtest/vsixtest.vcxproj.data 2ed517e100c66dc455b492e1a33350c1b20fbcdc
 F vsixtest/vsixtest.vcxproj.filters 37e51ffedcdb064aad6ff33b6148725226cd608e
 F vsixtest/vsixtest_TemporaryKey.pfx e5b1b036facdb453873e7084e1cae9102ccc67a0
-P 54be9af4469d7e31ee852f67e5aa32996557c10de654a60103fd165d2fedf311
-R 4534a93cc60bc9b01f38eb8cc54ed3a2
+P 65bcc583784476f8cc52dfe72ecc52df93d0ec5817c313ad7a83905c0047dd8c
+R c8334cab1fcc469c9751c0c187d23f95
 U larrybr
-Z bbcec0ff0072931f8df68fe4f02cd0b5
+Z 39c62f83179e0f32d38df3d4da9ac443
 # Remove this line to create a well-formed Fossil manifest.
index 9fa7c197537e7ac3a7c6120f6d661d9486a38912..1f637be117846e5dcf9f62bf06dc0c01352b161f 100644 (file)
@@ -1 +1 @@
-65bcc583784476f8cc52dfe72ecc52df93d0ec5817c313ad7a83905c0047dd8c
\ No newline at end of file
+9ee25eeaf17124dbe34b961384e74c1ae239ee1798bb01907938600ed6b4066f
\ No newline at end of file
index 23a8162ae279530e8af3b2153742d466028979b9..43a1d524d14b7aa6df566ca471ade031585814df 100644 (file)
@@ -2302,7 +2302,7 @@ struct sqlite3_mem_methods {
 ** database handle, SQLite checks if this will mean that there are now no
 ** connections at all to the database. If so, it performs a checkpoint
 ** operation before closing the connection. This option may be used to
-** override this behaviour. The first parameter passed to this operation
+** override this behavior. The first parameter passed to this operation
 ** is an integer - positive to disable checkpoints-on-close, or zero (the
 ** default) to enable them, and negative to leave the setting unchanged.
 ** The second parameter is a pointer to an integer
@@ -7765,7 +7765,7 @@ int sqlite3_blob_reopen(sqlite3_blob *, sqlite3_int64);
 ** code is returned and the transaction rolled back.
 **
 ** Calling this function with an argument that is not a NULL pointer or an
-** open blob handle results in undefined behaviour. ^Calling this routine
+** open blob handle results in undefined behavior. ^Calling this routine
 ** with a null pointer (such as would be returned by a failed call to
 ** [sqlite3_blob_open()]) is a harmless no-op. ^Otherwise, if this function
 ** is passed a valid open blob handle, the values returned by the
@@ -9307,8 +9307,8 @@ int sqlite3_backup_pagecount(sqlite3_backup *p);
 ** blocked connection already has a registered unlock-notify callback,
 ** then the new callback replaces the old.)^ ^If sqlite3_unlock_notify() is
 ** called with a NULL pointer as its second argument, then any existing
-** unlock-notify callback is cancelled. ^The blocked connections
-** unlock-notify callback may also be cancelled by closing the blocked
+** unlock-notify callback is canceled. ^The blocked connections
+** unlock-notify callback may also be canceled by closing the blocked
 ** connection using [sqlite3_close()].
 **
 ** The unlock-notify callback is not reentrant. If an application invokes