fix: typo in warning message

This commit is contained in:
JayceFayne 2021-03-23 18:53:53 +00:00 committed by GitHub
parent 7c8ddf307b
commit 7bf5076ece
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -335,13 +335,13 @@ function M.status(user_config)
if vim.api.nvim_echo then
vim.api.nvim_echo({
{
'lualine.nvim: status function has been ranamed to setup and will be removed by 24.03.2021, please change your configuration',
'lualine.nvim: status function has been renamed to setup and will be removed by 24.03.2021, please change your configuration',
'WarningMsg'
}
}, true, {})
else
print(
'lualine.nvim: status function has been ranamed to setup and will be removed by 24.03.2021, please change your configuration')
'lualine.nvim: status function has been renamed to setup and will be removed by 24.03.2021, please change your configuration')
end
return M.setup(user_config)
end