summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorGravatar Vincent Rischmann2021-01-05 21:49:27 +0100
committerGravatar Vincent Rischmann2021-01-05 21:49:27 +0100
commit1efd03eea61c0c61f3ca15b959d9923d1c018894 (patch)
treee7d4606d63f73d032d61855dcdb7ae73d9c06a40 /README.md
parentfix readme (diff)
downloadzig-sqlite-1efd03eea61c0c61f3ca15b959d9923d1c018894.tar.gz
zig-sqlite-1efd03eea61c0c61f3ca15b959d9923d1c018894.tar.xz
zig-sqlite-1efd03eea61c0c61f3ca15b959d9923d1c018894.zip
fix typo in readme
Diffstat (limited to '')
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index 1e4117d..0bd450c 100644
--- a/README.md
+++ b/README.md
@@ -272,7 +272,7 @@ while (true) {
272Since sqlite doesn't have many [types](https://www.sqlite.org/datatype3.html) only a small number of Zig types are allowed in binding parameters and in resultset mapping types. 272Since sqlite doesn't have many [types](https://www.sqlite.org/datatype3.html) only a small number of Zig types are allowed in binding parameters and in resultset mapping types.
273 273
274Here are the rules for bind parameters: 274Here are the rules for bind parameters:
275* any Zig `Int` or `ComptimeInt` is tread as a `INTEGER`. 275* any Zig `Int` or `ComptimeInt` is treated as a `INTEGER`.
276* any Zig `Float` or `ComptimeFloat` is treated as a `REAL`. 276* any Zig `Float` or `ComptimeFloat` is treated as a `REAL`.
277* `[]const u8`, `[]u8` is treated as a `TEXT`. 277* `[]const u8`, `[]u8` is treated as a `TEXT`.
278* The custom `sqlite.Blob` type is treated as a `BLOB`. 278* The custom `sqlite.Blob` type is treated as a `BLOB`.