From 440454aa478cfbbaeecbb3b76215785fb5a7c829 Mon Sep 17 00:00:00 2001 From: zayKenyon Date: Mon, 11 Aug 2025 02:26:12 +0100 Subject: [PATCH] typo: Native Messaging Docs (#593) Removes a secondary use of 'the'. --- native-messaging/add-on/background.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/native-messaging/add-on/background.js b/native-messaging/add-on/background.js index f4c9b09..de289f3 100644 --- a/native-messaging/add-on/background.js +++ b/native-messaging/add-on/background.js @@ -19,7 +19,7 @@ port.onDisconnect.addListener((port) => { } else { // The port closed for an unspecified reason. If this occurred right after // calling `browser.runtime.connectNative()` there may have been a problem - // starting the the native messaging client in the first place. + // starting the native messaging client in the first place. // https://developer.mozilla.org/en-US/docs/Mozilla/Add-ons/WebExtensions/Native_messaging#troubleshooting console.log(`Disconnected`, port); }