summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorGravatar Vincent Rischmann2021-01-26 00:37:21 +0100
committerGravatar Vincent Rischmann2021-01-26 00:37:21 +0100
commitaa78eb0511e0d1b053050c378fbe801b46e8445a (patch)
treecb7b7a578f08e2ef9f60f60b02b85394a2fc652e /README.md
parentfix typo in readme (diff)
downloadzig-sqlite-aa78eb0511e0d1b053050c378fbe801b46e8445a.tar.gz
zig-sqlite-aa78eb0511e0d1b053050c378fbe801b46e8445a.tar.xz
zig-sqlite-aa78eb0511e0d1b053050c378fbe801b46e8445a.zip
keep the same case for 'sqlite' everywhere
Diffstat (limited to '')
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index 39df035..f1f2e09 100644
--- a/README.md
+++ b/README.md
@@ -149,7 +149,7 @@ while (id < 20) : (id += 1) {
149 149
150For queries which return data you have multiple options: 150For queries which return data you have multiple options:
151* `Statement.all` which takes an allocator and can allocate memory. 151* `Statement.all` which takes an allocator and can allocate memory.
152* `Statement.one` which does not take an allocator and cannot allocate memory (aside from what SQLite allocates itself). 152* `Statement.one` which does not take an allocator and cannot allocate memory (aside from what sqlite allocates itself).
153* `Statement.oneAlloc` which takes an allocator and can allocate memory. 153* `Statement.oneAlloc` which takes an allocator and can allocate memory.
154 154
155### Type parameter 155### Type parameter