Skip to content

Commit

Permalink
fix: typo in lua/ibl/config.lua
Browse files Browse the repository at this point in the history
  • Loading branch information
heavyjoost authored and lukas-reineke committed Dec 21, 2023
1 parent f3eb33c commit 37abc0f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua/ibl/config.lua
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ M.default_config = {
local validate_char = function(char)
if type(char) == "string" then
local length = vim.fn.strdisplaywidth(char)
return length <= 1, string.format("'%s' has a dispaly width of %d", char, length)
return length <= 1, string.format("'%s' has a display width of %d", char, length)
else
if #char == 0 then
return false, "table is empty"
Expand Down

0 comments on commit 37abc0f

Please sign in to comment.
-