summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorGravatar Vincent Rischmann2020-12-21 21:00:57 +0100
committerGravatar Vincent Rischmann2020-12-21 21:00:57 +0100
commitc1b59a86343e9ac0ed5532039ae77fed853f277d (patch)
tree368fdbd68de7229d84c37894b3cf50f34e80b5df /README.md
parentMerge branch 'read-pointer' (diff)
downloadzig-sqlite-c1b59a86343e9ac0ed5532039ae77fed853f277d.tar.gz
zig-sqlite-c1b59a86343e9ac0ed5532039ae77fed853f277d.tar.xz
zig-sqlite-c1b59a86343e9ac0ed5532039ae77fed853f277d.zip
readme: fix spelling
Diffstat (limited to 'README.md')
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index fd9799b..22b775e 100644
--- a/README.md
+++ b/README.md
@@ -48,7 +48,7 @@ var db: sqlite.Db = undefined;
48try db.init(allocator, .{ .mode = sqlite.Db.Mode{ .File = "/home/vincent/mydata.db" } }); 48try db.init(allocator, .{ .mode = sqlite.Db.Mode{ .File = "/home/vincent/mydata.db" } });
49``` 49```
50 50
51The `init` method takes an allocator and an optional tuple which will used to configure sqlite. 51The `init` method takes an allocator and an optional tuple which will be used to configure sqlite.
52 52
53Right now the only member used in that tuple is `mode` which defines if the sqlite database is in memory or uses a file. 53Right now the only member used in that tuple is `mode` which defines if the sqlite database is in memory or uses a file.
54 54