minor(snip): remove additional comma in matrix

This commit is contained in:
arne314
2025-07-02 13:14:23 +02:00
parent 98e2565f74
commit ba16744411

View File

@@ -47,6 +47,8 @@ local lmat = function(_, sp)
for k = 1, cols + 1 do
if k == cols then
table.insert(nodes, t('dots.down, '))
elseif k == cols + 1 then
table.insert(nodes, t('dots.v'))
else
table.insert(nodes, t('dots.v, '))
end