summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorGravatar Vincent Rischmann2021-01-05 21:41:28 +0100
committerGravatar Vincent Rischmann2021-01-05 21:41:28 +0100
commitb6c4633758f6f192526909d3ffd0a4029c612297 (patch)
tree85c8eb39771cd282a52cec529225cc92a40f776d /README.md
parentMerge pull request #14 from Sobeston/patch-1 (diff)
downloadzig-sqlite-b6c4633758f6f192526909d3ffd0a4029c612297.tar.gz
zig-sqlite-b6c4633758f6f192526909d3ffd0a4029c612297.tar.xz
zig-sqlite-b6c4633758f6f192526909d3ffd0a4029c612297.zip
fix 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 81996ff..1e4117d 100644
--- a/README.md
+++ b/README.md
@@ -135,7 +135,7 @@ For queries which return data you have multiple options:
135All these methods take a type as first parameter. 135All these methods take a type as first parameter.
136 136
137The type represents a "row", it can be: 137The type represents a "row", it can be:
138* a struct where each field maps to the corresponding column in the resultset (so field 0 must map to field 1 and so on). 138* a struct where each field maps to the corresponding column in the resultset (so field 0 must map to column 1 and so on).
139* a single type, in that case the resultset must only return one column. 139* a single type, in that case the resultset must only return one column.
140 140
141Not all types are allowed, see the section "Bind parameters and resultset rows" for more information on the types mapping rules. 141Not all types are allowed, see the section "Bind parameters and resultset rows" for more information on the types mapping rules.