Skip to content

Commit

Permalink
Bug 1805514 - Pre: Fix typos. r=nrishel
Browse files Browse the repository at this point in the history
  • Loading branch information
ncalexan committed Jul 15, 2023
1 parent a0b7441 commit 61889b1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions browser/modules/BackgroundTask_uninstall.sys.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ function removeNotifications() {
console.log("Removing Windows toast notifications.");

if (!("nsIWindowsAlertsService" in Ci)) {
console.log("nsIWindowsAlertService not present.");
console.log("nsIWindowsAlertsService not present.");
return;
}

Expand All @@ -49,7 +49,7 @@ function removeNotifications() {
.getService(Ci.nsIAlertsService)
.QueryInterface(Ci.nsIWindowsAlertsService);
} catch (e) {
console.error("Error retrieving nsIWindowsAlertService: " + e.message);
console.error("Error retrieving nsIWindowsAlertsService: " + e.message);
return;
}

Expand Down
2 changes: 1 addition & 1 deletion toolkit/components/alerts/nsIWindowsAlertsService.idl
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ interface nsIWindowsAlertsService : nsIAlertsService
* @resolves {Object}
* Resolves with an Object, may contain the following optional
* properties if notification exists but wasn't registered with
* the WindowsAlertService:
* the WindowsAlertsService:
*
* `launchUrl` {string} a fallback URL to open.
*
Expand Down

0 comments on commit 61889b1

Please sign in to comment.