summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Vincent Rischmann2022-04-17 01:52:01 +0200
committerGravatar Vincent Rischmann2022-04-17 01:52:01 +0200
commit1ab4caa6fa7a3d7c295c750031ee9ed029b18d9f (patch)
tree9ea97b62212efb36f16653ef8115a0e4b9edf17b
parentMerge branch 'readme-toc' (diff)
downloadzig-sqlite-1ab4caa6fa7a3d7c295c750031ee9ed029b18d9f.tar.gz
zig-sqlite-1ab4caa6fa7a3d7c295c750031ee9ed029b18d9f.tar.xz
zig-sqlite-1ab4caa6fa7a3d7c295c750031ee9ed029b18d9f.zip
readme: fix formatting
Diffstat (limited to '')
-rw-r--r--README.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/README.md b/README.md
index 70f2300..1dbd5f1 100644
--- a/README.md
+++ b/README.md
@@ -543,10 +543,10 @@ sqlite supports [user-defined functions](https://www.sqlite.org/c3ref/create_fun
543* aggregate functions 543* aggregate functions
544 544
545In both cases the arguments are [sqlite3\_values](https://www.sqlite.org/c3ref/value_blob.html) and are converted to Zig values using the following rules: 545In both cases the arguments are [sqlite3\_values](https://www.sqlite.org/c3ref/value_blob.html) and are converted to Zig values using the following rules:
546* TEXT values can be either `sqlite.Text` or `[]const u8` 546* `TEXT` values can be either `sqlite.Text` or `[]const u8`
547* BLOB values can be either `sqlite.Blob` or `[]const u8` 547* `BLOB` values can be either `sqlite.Blob` or `[]const u8`
548* INTEGER values can be any Zig integer 548* `INTEGER` values can be any Zig integer
549* REAL values can be any Zig float 549* `REAL` values can be any Zig float
550 550
551## Scalar functions 551## Scalar functions
552 552