From c2eab092fda004de401fe4447fcb32d807f42754 Mon Sep 17 00:00:00 2001 From: joey Date: Mon, 6 Apr 2020 14:57:33 -0400 Subject: [PATCH] fixed typo --- src/js/background/backgroundLogic.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/js/background/backgroundLogic.js b/src/js/background/backgroundLogic.js index 78c3550..59fc7a6 100644 --- a/src/js/background/backgroundLogic.js +++ b/src/js/background/backgroundLogic.js @@ -269,7 +269,7 @@ const backgroundLogic = { if (windowId === -1) { const newWindowObj = await browser.windows.create(); windowId = newWindowObj.id; - // Since creating new window will have opened n default tab, + // Since creating new window will open a default tab, // take the tab id here, and we could delete it after moving newlyOpenedTabId = newWindowObj.tabs[0].id; }