summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to '')
-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