From 386cf1abb8fd43e6169c5c123c81321e70051a1f Mon Sep 17 00:00:00 2001 From: Vincent Rischmann Date: Sat, 2 Jan 2021 00:30:43 +0100 Subject: fix the comment on Stmt.one and Stmt.all --- sqlite.zig | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'sqlite.zig') diff --git a/sqlite.zig b/sqlite.zig index 7e6018e..967dba1 100644 --- a/sqlite.zig +++ b/sqlite.zig @@ -805,8 +805,7 @@ pub fn Statement(comptime opts: StatementOptions, comptime query: ParsedQuery) t /// .{ .foo = "bar", .age = 500 }, /// ); /// - /// The `options` tuple is used to provide additional state in some cases, for example - /// an allocator used to read text and blobs. + /// The `options` tuple is used to provide additional state in some cases. /// /// The `values` tuple is used for the bind parameters. It must have as many fields as there are bind markers /// in the input query string. @@ -856,7 +855,6 @@ pub fn Statement(comptime opts: StatementOptions, comptime query: ParsedQuery) t /// ); /// /// The `options` tuple is used to provide additional state in some cases. - /// Note that for this function the allocator is mandatory. /// /// The `values` tuple is used for the bind parameters. It must have as many fields as there are bind markers /// in the input query string. -- cgit v1.2.3