diff options
| author | 2020-12-21 21:00:57 +0100 | |
|---|---|---|
| committer | 2020-12-21 21:00:57 +0100 | |
| commit | c1b59a86343e9ac0ed5532039ae77fed853f277d (patch) | |
| tree | 368fdbd68de7229d84c37894b3cf50f34e80b5df | |
| parent | Merge branch 'read-pointer' (diff) | |
| download | zig-sqlite-c1b59a86343e9ac0ed5532039ae77fed853f277d.tar.gz zig-sqlite-c1b59a86343e9ac0ed5532039ae77fed853f277d.tar.xz zig-sqlite-c1b59a86343e9ac0ed5532039ae77fed853f277d.zip | |
readme: fix spelling
Diffstat (limited to '')
| -rw-r--r-- | README.md | 2 |
1 files changed, 1 insertions, 1 deletions
| @@ -48,7 +48,7 @@ var db: sqlite.Db = undefined; | |||
| 48 | try db.init(allocator, .{ .mode = sqlite.Db.Mode{ .File = "/home/vincent/mydata.db" } }); | 48 | try db.init(allocator, .{ .mode = sqlite.Db.Mode{ .File = "/home/vincent/mydata.db" } }); |
| 49 | ``` | 49 | ``` |
| 50 | 50 | ||
| 51 | The `init` method takes an allocator and an optional tuple which will used to configure sqlite. | 51 | The `init` method takes an allocator and an optional tuple which will be used to configure sqlite. |
| 52 | 52 | ||
| 53 | Right now the only member used in that tuple is `mode` which defines if the sqlite database is in memory or uses a file. | 53 | Right 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 | ||