From ba6dd056dd28989db3e0c22797a6a70321b5980a Mon Sep 17 00:00:00 2001 From: Kim Gert Nielsen Date: Sat, 27 Jan 2024 16:16:54 +0100 Subject: [PATCH] fix: Fix a typo in the documentation --- lua/fidget/notification.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/fidget/notification.lua b/lua/fidget/notification.lua index 698d244..d698b91 100644 --- a/lua/fidget/notification.lua +++ b/lua/fidget/notification.lua @@ -272,7 +272,7 @@ end) --- --- Can be used to override `vim.notify()`, e.g., --->lua ---- vim.notify = require("fidget.notifications").notify +--- vim.notify = require("fidget.notification").notify ---< --- ---@param msg string|nil Content of the notification to show to the user.