diff options
| author | Alexander Rolley <arolley35@gmail.com> | 2026-05-23 13:11:41 +0200 |
|---|---|---|
| committer | Alexander Rolley <arolley35@gmail.com> | 2026-05-23 13:11:41 +0200 |
| commit | 460942180d10a2d9bcea6773dc0a3a87d6bf8a71 (patch) | |
| tree | d3442e39bb888b6720dd42b2c3acd2d488a9cb4a | |
| parent | a7d1c5ce64978efa63b93758517479b6745b387c (diff) | |
Minor changes to documentation.
| -rw-r--r-- | src/db/sqlite.zig | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/db/sqlite.zig b/src/db/sqlite.zig index 87282ac..953df0b 100644 --- a/src/db/sqlite.zig +++ b/src/db/sqlite.zig @@ -56,8 +56,8 @@ pub const Database = struct { /// /// # Panics /// - /// Panics if there exist unfinalised prepared statements, BLOB handlers, - /// and/or unfinished backup objects. + /// Panics in debug mode if there exist unfinalised prepared statements, + /// BLOB handlers, and/or unfinished backup objects. /// /// See https://sqlite.org/c3ref/close.html pub fn deinit(self: *Database) void { |