From c0a839ed2ffc13fb35756cf5b5562aaee2e7bfe0 Mon Sep 17 00:00:00 2001 From: Joe Koop Date: Sat, 27 Jun 2026 12:36:23 -0500 Subject: [PATCH] Correct comment wording in ThreadingMode enum --- sqlite.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sqlite.zig b/sqlite.zig index bc1ab7d..429edcc 100644 --- a/sqlite.zig +++ b/sqlite.zig @@ -234,7 +234,7 @@ pub const ThreadingMode = enum { /// SingleThread makes SQLite unsafe to use with more than a single thread at once. SingleThread, /// MultiThread makes SQLite safe to use with multiple threads at once provided that - /// a single database connection is not by more than a single thread at once. + /// a single database connection is not used by more than a single thread at once. MultiThread, /// Serialized makes SQLite safe to use with multiple threads at once with no restriction. Serialized,