summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorGravatar Vincent Rischmann2020-10-30 12:18:38 +0100
committerGravatar Vincent Rischmann2020-10-30 12:18:38 +0100
commita43d41d9db017b4b08b9672ca7b5146b2ec05f33 (patch)
treec6974773180501dfcc369157dcc8ce77399ee169 /README.md
parentfix compileError message (diff)
downloadzig-sqlite-a43d41d9db017b4b08b9672ca7b5146b2ec05f33.tar.gz
zig-sqlite-a43d41d9db017b4b08b9672ca7b5146b2ec05f33.tar.xz
zig-sqlite-a43d41d9db017b4b08b9672ca7b5146b2ec05f33.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 1073293..c09848b 100644
--- a/README.md
+++ b/README.md
@@ -117,7 +117,7 @@ Here are the rules for bind parameters:
117* `[]const u8`, `[]u8` or any array of `u8` is treated as a `TEXT`. 117* `[]const u8`, `[]u8` or any array of `u8` is treated as a `TEXT`.
118* The custom `sqlite.Bytes` type is treated as a `TEXT` or `BLOB`. 118* The custom `sqlite.Bytes` type is treated as a `TEXT` or `BLOB`.
119 119
120Here are the resules for resultset rows: 120Here are the rules for resultset rows:
121* `INTEGER` can be read into any Zig `Int` provided the data fits. 121* `INTEGER` can be read into any Zig `Int` provided the data fits.
122* `REAL` can be read into any Zig `Float` provided the data fits. 122* `REAL` can be read into any Zig `Float` provided the data fits.
123* `TEXT` can be read into a `[]const u8` or `[]u8`. 123* `TEXT` can be read into a `[]const u8` or `[]u8`.