summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorGravatar Vincent Rischmann2022-04-21 22:19:38 +0200
committerGravatar Vincent Rischmann2022-04-21 22:19:38 +0200
commite4677dcaeb9345f2a5b720bf23360ed75e4a14b4 (patch)
tree0af61eadd3281800a7fe42bb4422d40c7f457210 /README.md
parentcheck explicitly that bindField is implemented (diff)
downloadzig-sqlite-e4677dcaeb9345f2a5b720bf23360ed75e4a14b4.tar.gz
zig-sqlite-e4677dcaeb9345f2a5b720bf23360ed75e4a14b4.tar.xz
zig-sqlite-e4677dcaeb9345f2a5b720bf23360ed75e4a14b4.zip
fix readme
Diffstat (limited to '')
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index ebb615a..c64e749 100644
--- a/README.md
+++ b/README.md
@@ -110,7 +110,7 @@ sqlite.addIncludeDir("third_party/zig-sqlite/c");
110sqlite.linkLibC(); 110sqlite.linkLibC();
111``` 111```
112 112
113If you need to define custom [compime-time options](https://www.sqlite.org/compile.html#overview) for sqlite, modify the flags (second argument to `addCSourceFile`). 113If you need to define custom [compile-time options](https://www.sqlite.org/compile.html#overview) for sqlite, modify the flags (second argument to `addCSourceFile`).
114 114
115Now it's just a matter of linking your `build.zig` target(s) to this library instead of the system one: 115Now it's just a matter of linking your `build.zig` target(s) to this library instead of the system one:
116 116