summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorGravatar Vincent Rischmann2021-01-03 14:10:38 +0100
committerGravatar Vincent Rischmann2021-01-03 14:10:42 +0100
commit2fad97c7159d41df2f1f62423281f7dc95b5962d (patch)
tree3f7ac19796bd24a288851c47a5a8d990926f50bb /README.md
parentreadme: fix code examples (diff)
downloadzig-sqlite-2fad97c7159d41df2f1f62423281f7dc95b5962d.tar.gz
zig-sqlite-2fad97c7159d41df2f1f62423281f7dc95b5962d.tar.xz
zig-sqlite-2fad97c7159d41df2f1f62423281f7dc95b5962d.zip
readme: remove obsolete statement
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 ac31b25..81996ff 100644
--- a/README.md
+++ b/README.md
@@ -61,7 +61,7 @@ try db.init(.{
61}); 61});
62``` 62```
63 63
64The `init` method takes an allocator and a `InitOptions` struct which will be used to configure sqlite. 64The `init` method takes a `InitOptions` struct which will be used to configure sqlite.
65 65
66Only the `mode` field is mandatory, the other fields have sane default values. 66Only the `mode` field is mandatory, the other fields have sane default values.
67 67