Skip to content

Commit

Permalink
typo: repored -> reported
Browse files Browse the repository at this point in the history
  • Loading branch information
Steve Leung committed Oct 27, 2017
1 parent 7ec54bf commit ed70746
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/background.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ function openAs(data) {
const url = data.linkUrl;
debug("openAs", menuItemId, url);

// MIME type for selected option or null for "Server repored type"
// MIME type for selected option or null for "Server reported type"
const mimeType = MIMES_HTTP[data.menuItemId];
if (mimeType === undefined) {
console.assert(mimeType, "Mime type not found for entry ", data.menuItemId);
Expand Down Expand Up @@ -102,7 +102,7 @@ function openAs(data) {
}
}

browser.contextMenus.create({contexts: ["link"], id: MENU_IDS.server_type, title: "Server repored type"});
browser.contextMenus.create({contexts: ["link"], id: MENU_IDS.server_type, title: "Server reported type"});
browser.contextMenus.create({contexts: ["link"], id: MENU_IDS.text, title: "Text"});
browser.contextMenus.create({contexts: ["link"], id: MENU_IDS.image, title: "Image"});
browser.contextMenus.create({contexts: ["link"], id: MENU_IDS.pdf, title: "PDF"});
Expand Down

0 comments on commit ed70746

Please sign in to comment.