diff options
author | rebuilt <[email protected]> | 2021-08-06 13:31:26 +0200 |
---|---|---|
committer | GitHub <[email protected]> | 2021-08-06 13:31:26 +0200 |
commit | ca750d8ff4b99def210d6c5d98078a77aa1970aa (patch) | |
tree | e96d2a7d9b1ce4c586d28d3d08ab4d583fb09b53 /lua/utils/init.lua | |
parent | 89ee39cfd571279b98c6681e47f68ca43a48c44b (diff) | |
parent | 9fc6a2e1cdac513c8ff09069263ff102852be86a (diff) |
Merge pull request #1251 from grvxs/fix-most-typos
[Doc]: Fix most typos
Diffstat (limited to 'lua/utils/init.lua')
-rw-r--r-- | lua/utils/init.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/utils/init.lua b/lua/utils/init.lua index 8cfd2790..8cc1b32d 100644 --- a/lua/utils/init.lua +++ b/lua/utils/init.lua @@ -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 |