From a415621ffb4134b330ded3663c1bf322b0481115 Mon Sep 17 00:00:00 2001 From: "Mr.Hope" Date: Mon, 19 Dec 2022 22:31:07 +0800 Subject: [PATCH] chore: fix typos --- notifications-sample/src/extension.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/notifications-sample/src/extension.ts b/notifications-sample/src/extension.ts index e8e21338..8c891875 100644 --- a/notifications-sample/src/extension.ts +++ b/notifications-sample/src/extension.ts @@ -19,7 +19,7 @@ export function activate(context: vscode.ExtensionContext) { vscode.window.showErrorMessage('Error Notification'); }); - // Notifcation with actions + // Notification with actions const showWarningNotificationWithActions = vscode.commands.registerCommand('notifications-sample.showWarningWithActions', async () => { const selection = await vscode.window.showWarningMessage('Warning Notification With Actions', 'Action 1', 'Action 2', 'Action 3');