From 6a40c88ef0b6a5abee45e17fc8e11aa8cb5ea493 Mon Sep 17 00:00:00 2001 From: Dmitry Stogov Date: Tue, 26 Dec 2023 21:14:37 +0300 Subject: [PATCH] Fixed type --- dynasm/dynasm.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dynasm/dynasm.lua b/dynasm/dynasm.lua index 5be75f7f..0d15a872 100644 --- a/dynasm/dynasm.lua +++ b/dynasm/dynasm.lua @@ -75,7 +75,7 @@ local function wline(line, needindent) g_synclineno = g_synclineno + 1 end --- Write assembler line as a comment, if requestd. +-- Write assembler line as a comment, if requested. local function wcomment(aline) if g_opt.comment then wline(g_opt.comment..aline..g_opt.endcomment, true)