Skip to content

Commit d75fab5

Browse files
tniessentpoisseau
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: nodejs#54684 Reviewed-By: Michaël Zasso <[email protected]> Reviewed-By: Luigi Pinca <[email protected]>
1 parent 71be373 commit d75fab5

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

doc/api/sqlite.md

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

328328
| SQLite | JavaScript |
329329
| --------- | -------------------- |
330-
| `NULL` | `null` |
331-
| `INTEGER` | `number` or `BigInt` |
332-
| `REAL` | `number` |
333-
| `TEXT` | `string` |
334-
| `BLOB` | `Uint8Array` |
330+
| `NULL` | {null} |
331+
| `INTEGER` | {number} or {bigint} |
332+
| `REAL` | {number} |
333+
| `TEXT` | {string} |
334+
| `BLOB` | {Uint8Array} |
335335

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

0 commit comments

Comments
 (0)