fix: typos in lua/

This commit is contained in:
grvxs 2021-08-06 16:50:25 +05:30
parent f3c44ce3a9
commit 9fc6a2e1cd
No known key found for this signature in database
GPG key ID: 08426A288E0F7DFC
3 changed files with 3 additions and 3 deletions

View file

@ -16,7 +16,7 @@ local function r_inspect_settings(structure, limit, separator)
if ts == "table" then
for k, v in pairs(structure) do
-- replace non alpha keys wih ["key"]
-- replace non alpha keys with ["key"]
if tostring(k):match "[^%a_]" then
k = '["' .. tostring(k) .. '"]'
end