Skip to content

Commit 1c7bdf9

Browse files
tniessenaduh95
authored andcommitted
doc: render type references in SQLite docs
Render JavaScript types as such in the section "Type conversion between JavaScript and SQLite". PR-URL: #54684 Reviewed-By: Michaël Zasso <[email protected]> Reviewed-By: Luigi Pinca <[email protected]>
1 parent e2307d8 commit 1c7bdf9

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

doc/api/sqlite.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -308,11 +308,11 @@ exception.
308308

309309
| SQLite | JavaScript |
310310
| --------- | -------------------- |
311-
| `NULL` | `null` |
312-
| `INTEGER` | `number` or `BigInt` |
313-
| `REAL` | `number` |
314-
| `TEXT` | `string` |
315-
| `BLOB` | `Uint8Array` |
311+
| `NULL` | {null} |
312+
| `INTEGER` | {number} or {bigint} |
313+
| `REAL` | {number} |
314+
| `TEXT` | {string} |
315+
| `BLOB` | {Uint8Array} |
316316

317317
[SQL injection]: https://en.wikipedia.org/wiki/SQL_injection
318318
[`--experimental-sqlite`]: cli.md#--experimental-sqlite

0 commit comments

Comments
 (0)