summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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`.