Skip to content

Commit de6ddd9

Browse files
committed
Fix Luacheck linting errors
1 parent af97175 commit de6ddd9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/luasm.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ function instruction:parse(elements, luasm)
185185
args[i - 1] = arg
186186
end
187187

188-
return {
188+
return {
189189
op = opcode,
190190
args = args,
191191
line = luasm.current_line,
@@ -363,7 +363,7 @@ function Stack:get(index)
363363
end
364364

365365
--[[
366-
Returns a stack datastructure.
366+
Returns a stack datastructure.
367367
A stack is a LIFO (Last in, first out) datastructure where the last element that
368368
was added, will be the first that can be removed.
369369
--]]

0 commit comments

Comments
 (0)