1
Fork 0

Remove accidental debug print

This commit is contained in:
Matei Adriel 2023-09-19 15:07:45 +03:00
parent 9ef93664e2
commit c21bf836a8
No known key found for this signature in database

View file

@ -240,15 +240,6 @@ local expanded = scrap.expand_many(abolishAbbreviations)
-- Last I checked this contained 1179 abbreviations
-- print(#abbreviations + #expanded)
local all = ""
for _, v in pairs(abbreviations) do
all = all .. v[1] .. " " .. v[2] .. "\n"
end
for _, v in pairs(expanded) do
all = all .. v[1] .. " " .. v[2] .. "\n"
end
print(all)
A.manyLocalAbbr(abbreviations)
A.manyLocalAbbr(expanded)