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');