summaryrefslogtreecommitdiff
path: root/sqlite.zig
diff options
context:
space:
mode:
Diffstat (limited to 'sqlite.zig')
-rw-r--r--sqlite.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/sqlite.zig b/sqlite.zig
index 1fe8aea..59a43c9 100644
--- a/sqlite.zig
+++ b/sqlite.zig
@@ -771,7 +771,7 @@ pub const Db = struct {
771 /// bindings to values, but have multiple commands inside. 771 /// bindings to values, but have multiple commands inside.
772 /// 772 ///
773 /// Exmaple: 'create table a(); create table b();' 773 /// Exmaple: 'create table a(); create table b();'
774 pub fn execMulti(self: *Self, comptime query: []const u8, options: QueryOptions) !void { 774 pub fn execMulti(self: *Self, query: []const u8, options: QueryOptions) !void {
775 var new_options = options; 775 var new_options = options;
776 var sql_tail_ptr: ?[*:0]const u8 = null; 776 var sql_tail_ptr: ?[*:0]const u8 = null;
777 new_options.sql_tail_ptr = &sql_tail_ptr; 777 new_options.sql_tail_ptr = &sql_tail_ptr;