From 943f2ece02cf6e98ea7f6163d627cfe5b0005884 Mon Sep 17 00:00:00 2001 From: Vincent Rischmann Date: Sun, 27 Dec 2020 16:14:10 +0100 Subject: fix some typos --- sqlite.zig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sqlite.zig') diff --git a/sqlite.zig b/sqlite.zig index a513413..abc8dce 100644 --- a/sqlite.zig +++ b/sqlite.zig @@ -183,7 +183,7 @@ pub fn Iterator(comptime Type: type) type { stmt: *c.sqlite3_stmt, - // next scans the next row using the preapred statement. + // next scans the next row using the prepared statement. // // If it returns null iterating is done. pub fn next(self: *Self, options: anytype) !?Type { @@ -487,7 +487,7 @@ pub const StatementOptions = struct {}; /// }; /// const rows = try stmt.all(Row, .{ .allocator = allocator }, .{}); /// -/// Look at aach function for more complete documentation. +/// Look at each function for more complete documentation. /// pub fn Statement(comptime opts: StatementOptions, comptime query: ParsedQuery) type { return struct { -- cgit v1.2.3