diff options
Diffstat (limited to 'ext/wasm/api/sqlite3-wasm.c')
-rw-r--r-- | ext/wasm/api/sqlite3-wasm.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/ext/wasm/api/sqlite3-wasm.c b/ext/wasm/api/sqlite3-wasm.c index c27dad56f..506eaf66e 100644 --- a/ext/wasm/api/sqlite3-wasm.c +++ b/ext/wasm/api/sqlite3-wasm.c @@ -213,8 +213,7 @@ const char * sqlite3_wasm_enum_json(void){ DefGroup(blobFinalizers) { /* SQLITE_STATIC/TRANSIENT need to be handled explicitly as ** integers to avoid casting-related warnings. */ - out("\"SQLITE_STATIC\":0, " - "\"SQLITE_TRANSIENT\":-1"); + out("\"SQLITE_STATIC\":0, \"SQLITE_TRANSIENT\":-1"); } _DefGroup; DefGroup(udfFlags) { @@ -312,8 +311,8 @@ const char * sqlite3_wasm_enum_json(void){ ** } ** } ** - ** Detailed documentation for those bits are in an external - ** file (StackBinder.md, as of this writing). + ** Detailed documentation for those bits are in the docs for the + ** Jaccwabyt JS-side component. */ /** Macros for emitting StructBinder description. */ |