fix(ui): s/format_entry/format_item to match docs (#15819)

Follow up to https://github.com/neovim/neovim/pull/15771
This commit is contained in:
Mathias Fußenegger
2021-09-28 01:12:03 +02:00
committed by GitHub
parent 63fde086d9
commit 9ca7b6b71a
3 changed files with 4 additions and 4 deletions

View File

@@ -17,7 +17,7 @@ describe('vim.ui', function()
{ name = 'Item 2' },
}
local opts = {
format_entry = function(entry)
format_item = function(entry)
return entry.name
end
}