From faef9121e34f2afc4453232ab228716ebff38984 Mon Sep 17 00:00:00 2001 From: Anton Bulakh Date: Sun, 8 Feb 2026 16:11:38 +0200 Subject: [PATCH] Fix luals warning on default_error_reporter function --- nxml.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nxml.lua b/nxml.lua index 5b8764f..432b053 100644 --- a/nxml.lua +++ b/nxml.lua @@ -327,9 +327,9 @@ local PARSER_MT = { return "nxml::parser" end, } + ---@param type error_type ---@param msg string - local function default_error_reporter(type, msg) print("parser error: [" .. type .. "] " .. msg) end