diff options
author | drh <> | 2025-04-10 10:18:07 +0000 |
---|---|---|
committer | drh <> | 2025-04-10 10:18:07 +0000 |
commit | 8a6f89c845763b11023e438e0fa63dc80aeda72d (patch) | |
tree | 264bfb9a8c6bd407f1f9caacc1a4061ac44f1c80 /ext/wasm/api | |
parent | 509d899a2dec05549c88147429c205598d9ee061 (diff) | |
download | sqlite-8a6f89c845763b11023e438e0fa63dc80aeda72d.tar.gz sqlite-8a6f89c845763b11023e438e0fa63dc80aeda72d.zip |
Remove unnecessary "www." prefixes on domain names in URLs.
FossilOrigin-Name: 20acd630b91609725794ce84f9eda01d5f3c898407f0948264830851d25ccaa6
Diffstat (limited to 'ext/wasm/api')
-rw-r--r-- | ext/wasm/api/sqlite3-api-prologue.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/wasm/api/sqlite3-api-prologue.js b/ext/wasm/api/sqlite3-api-prologue.js index 719e307e8..7e128a3fa 100644 --- a/ext/wasm/api/sqlite3-api-prologue.js +++ b/ext/wasm/api/sqlite3-api-prologue.js @@ -195,7 +195,7 @@ globalThis.sqlite3ApiBootstrap = function sqlite3ApiBootstrap( names with prefixes 'sqlite3_' and 'SQLITE_' behave, insofar as possible, identically to the C-native counterparts, as documented at: - https://www.sqlite.org/c3ref/intro.html + https://sqlite.org/c3ref/intro.html A very few exceptions require an additional level of proxy function or may otherwise require special attention in the WASM @@ -663,7 +663,7 @@ globalThis.sqlite3ApiBootstrap = function sqlite3ApiBootstrap( free those pointers (using `wasm.uninstallFunction()` or equivalent). - C reference: https://www.sqlite.org/c3ref/create_function.html + C reference: https://sqlite.org/c3ref/create_function.html Maintenance reminder: the ability to add new WASM-accessible functions to the runtime requires that the |