]> git.ipfire.org Git - thirdparty/sqlite.git/commitdiff
Fix a typo on a comment used to generate bytecode documentation.
authordrh <>
Thu, 4 Aug 2022 14:02:35 +0000 (14:02 +0000)
committerdrh <>
Thu, 4 Aug 2022 14:02:35 +0000 (14:02 +0000)
FossilOrigin-Name: 64348d0b665f61c3a89f51341f23ca87f939dd9e306dc58c2004e46ab04e696e

manifest
manifest.uuid
src/vdbe.c

index 75438ca23f1175178f6e473b4423265d9a8399ac..3e7707eefe092d280eb0ede2a82eeb6735ad814d 100644 (file)
--- a/manifest
+++ b/manifest
@@ -1,5 +1,5 @@
-C Performance\soptimization\sto\sthe\smath\sopcodes\sof\sthe\sbytecode\sengine.
-D 2022-08-03T19:53:54.082
+C Fix\sa\stypo\son\sa\scomment\sused\sto\sgenerate\sbytecode\sdocumentation.
+D 2022-08-04T14:02:35.852
 F .fossil-settings/empty-dirs dbb81e8fc0401ac46a1491ab34a7f2c7c0452f2f06b54ebb845d024ca8283ef1
 F .fossil-settings/ignore-glob 35175cdfcf539b2318cb04a9901442804be81cd677d8b889fcc9149c21f239ea
 F LICENSE.md df5091916dbb40e6e9686186587125e1b2ff51f022cc334e886c19a0e9982724
@@ -642,7 +642,7 @@ F src/upsert.c 8789047a8f0a601ea42fa0256d1ba3190c13746b6ba940fe2d25643a7e991937
 F src/utf.c ee39565f0843775cc2c81135751ddd93eceb91a673ea2c57f61c76f288b041a0
 F src/util.c 602fe229f32a96ceccae4f40824129669582096f7c355f53dbac156c9fecef23
 F src/vacuum.c bb346170b0b54c6683bba4a5983aea40485597fdf605c87ec8bc2e199fe88cd8
-F src/vdbe.c 34f76cbbd886d90413b4503e6d46d7425152b88219bdd4e6bcaf81da75640d3e
+F src/vdbe.c 796fbae3e989744ea3761c5ab8a23bec1764ff889d267d71666fcaa4aeb75a81
 F src/vdbe.h 64619af62603dc3c4f5ff6ff6d2c8f389abd667a29ce6007ed44bd22b3211cd0
 F src/vdbeInt.h 2cad0aeeb106371ed0e0946bab89f60627087068847afc2451c05056961c18da
 F src/vdbeapi.c 4181dffeef6ee181275cfecf27ad8577024c17ee9639531decdf4162b8c0326b
@@ -1981,8 +1981,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 aab24c37fb444804fb91177b4b522909ef1bb85383444d97d82a758f919047d2
-R e2ed79990c9f576213c6203a5349f2b7
+P 597347d9c39f6ed068ac942a8c9853b1b745fce1eb5e9dd30f6c1cb312b36f53
+R ce5a27ffc72e7ec12d095a7689107487
 U drh
-Z ef554432af87d216083ec59e16ec0e61
+Z 549658791a10dec284226014b5aa7e75
 # Remove this line to create a well-formed Fossil manifest.
index a35147d8e37b5b121512582fc71bd6798fa21add..f4402b8b33b77fea53f7c864d49ae261dfd60e9f 100644 (file)
@@ -1 +1 @@
-597347d9c39f6ed068ac942a8c9853b1b745fce1eb5e9dd30f6c1cb312b36f53
\ No newline at end of file
+64348d0b665f61c3a89f51341f23ca87f939dd9e306dc58c2004e46ab04e696e
\ No newline at end of file
index 0b6fee35211eecda7f41e76a6523d2f7477f6699..72dae088103c3737db06c527d86a3a4059c0706c 100644 (file)
@@ -7216,7 +7216,7 @@ case OP_IfPos: {        /* jump, in1 */
 ** Synopsis: if r[P1]>0 then r[P2]=r[P1]+max(0,r[P3]) else r[P2]=(-1)
 **
 ** This opcode performs a commonly used computation associated with
-** LIMIT and OFFSET process.  r[P1] holds the limit counter.  r[P3]
+** LIMIT and OFFSET processing.  r[P1] holds the limit counter.  r[P3]
 ** holds the offset counter.  The opcode computes the combined value
 ** of the LIMIT and OFFSET and stores that value in r[P2].  The r[P2]
 ** value computed is the total number of rows that will need to be