From 7bf5076ece80cde0a48dac403799a89c8caefd1d Mon Sep 17 00:00:00 2001 From: JayceFayne <13365789+JayceFayne@users.noreply.github.com> Date: Tue, 23 Mar 2021 18:53:53 +0000 Subject: [PATCH] fix: typo in warning message --- lua/lualine/init.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lua/lualine/init.lua b/lua/lualine/init.lua index cec498c..848d75b 100644 --- a/lua/lualine/init.lua +++ b/lua/lualine/init.lua @@ -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