From 6b79ef2c4f3797507b7d673f5b46a84107a42a3b Mon Sep 17 00:00:00 2001 From: BranndonWork Date: Fri, 30 Jun 2023 06:02:01 -0400 Subject: [PATCH] Fixed typo of "m" when "," was intended --- src/addons/use-notification-center/useNotificationCenter.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/addons/use-notification-center/useNotificationCenter.ts b/src/addons/use-notification-center/useNotificationCenter.ts index bd108d26..0dfb2c91 100644 --- a/src/addons/use-notification-center/useNotificationCenter.ts +++ b/src/addons/use-notification-center/useNotificationCenter.ts @@ -138,7 +138,7 @@ export interface UseNotificationCenter { * const id = update("anId", {content: "test", data: { foo: "hello" } }) * * // It's also possible to update the id - * const id = update("anId"m { id:"anotherOne", data: {title: "a title", text: "some text"} }) + * const id = update("anId", { id:"anotherOne", data: {title: "a title", text: "some text"} }) * ``` */ update(id: Id, item: Partial>): Id | null;