From 3244a30b071a34343cc319e9b16794d99d21f4c0 Mon Sep 17 00:00:00 2001 From: James Hulce Date: Mon, 30 Jun 2025 11:43:06 -0500 Subject: [PATCH] Update lsqlite3 documentation link comments --- tool/net/definitions.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tool/net/definitions.lua b/tool/net/definitions.lua index 3732416b0..6fd656f47 100644 --- a/tool/net/definitions.lua +++ b/tool/net/definitions.lua @@ -2986,7 +2986,7 @@ function Database:db_filename(name) end function Database:deserialize(s) end ---@return integer error the numerical result code (or extended result code) for the most recent failed call associated with database db. ---- See http://lua.sqlite.org/index.cgi/doc/tip/doc/lsqlite3.wiki#numerical_error_and_result_codes for details. +--- See https://lua.sqlite.org/home/doc/tip/doc/lsqlite3.wiki#numerical_error_and_result_codes for details. ---@nodiscard function Database:error_code() end @@ -3103,7 +3103,7 @@ function Database:nrows(sql) end --- representation and returns this as userdata. The returned object should be --- used for all further method calls in connection with this specific SQL --- statement. ---- See http://lua.sqlite.org/index.cgi/doc/tip/doc/lsqlite3.wiki#methods_for_prepared_statements. +--- See https://lua.sqlite.org/home/doc/tip/doc/lsqlite3.wiki#methods_for_prepared_statements for details. ---@param sql string ---@return lsqlite3.Statement ---@nodiscard