aboutsummaryrefslogtreecommitdiff
path: root/ext/wasm/api/sqlite3-v-helper.js
diff options
context:
space:
mode:
authorstephan <stephan@noemail.net>2022-12-07 03:42:39 +0000
committerstephan <stephan@noemail.net>2022-12-07 03:42:39 +0000
commit30da58c5d66c386129a872ccd3a13b452c67717a (patch)
treee3cdfc1e4644f3bb1e5ad66c7ae411b4b9c02f95 /ext/wasm/api/sqlite3-v-helper.js
parent241cde98b89255f41ec13b35a33b3dfdaa9cf580 (diff)
downloadsqlite-30da58c5d66c386129a872ccd3a13b452c67717a.tar.gz
sqlite-30da58c5d66c386129a872ccd3a13b452c67717a.zip
Add addOnDispose() method to Jaccwabyt and code-adjacent minor internal cleanups.
FossilOrigin-Name: 6a2723fe3f28dd94328d901e64e1e9ee9a1b2e9eeaed6c54038a5b83c914db78
Diffstat (limited to 'ext/wasm/api/sqlite3-v-helper.js')
-rw-r--r--ext/wasm/api/sqlite3-v-helper.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/wasm/api/sqlite3-v-helper.js b/ext/wasm/api/sqlite3-v-helper.js
index a23070b24..1f2950f74 100644
--- a/ext/wasm/api/sqlite3-v-helper.js
+++ b/ext/wasm/api/sqlite3-v-helper.js
@@ -350,10 +350,10 @@ self.sqlite3ApiBootstrap.initializers.push(function(sqlite3){
methods which take a (sqlite3_vtab_cursor*) _except_ for
xClose(), in which case use...
- - wrapCursor(pCursor, true) will remove the m apping of pCursor to a
+ - wrapCursor(pCursor, true) will remove the mapping of pCursor to a
capi.sqlite3_vtab_cursor object and return that object. The
caller must call dispose() on the returned object. This is
- intended to be called form xClose() or in error handling of a
+ intended to be called from xClose() or in error handling of a
failed xOpen().
*/
vt.xWrapCursor = __xWrapFactory(capi.sqlite3_vtab_cursor);