diff options
author | Elliot <elliot@citrusbytes.net> | 2019-02-06 10:52:30 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-02-06 10:52:30 +0000 |
commit | 8abc2d8ef06e1114e90cc96a153f60da686ae1c0 (patch) | |
tree | bb38f94cc8e2d1789d216f2a4820aedb752192d7 /src | |
parent | 21bc06cfeb81116776c8bd4926f836c99ef9be57 (diff) |
Correct spelling of WebExtensions
Spelling as per https://wiki.mozilla.org/WebExtensions
Diffstat (limited to 'src')
-rw-r--r-- | src/background/usecases/operation.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/background/usecases/operation.js b/src/background/usecases/operation.js index 73e4111..ed64032 100644 --- a/src/background/usecases/operation.js +++ b/src/background/usecases/operation.js @@ -195,7 +195,7 @@ export default class OperationInteractor { let us = urls.homepageUrls(result.value); if (us.length === 1 && us[0] === 'about:home') { // eslint-disable-next-line max-len - throw new Error('Cannot open Firefox Home (about:home) by WebExnteions, set your custom URLs'); + throw new Error('Cannot open Firefox Home (about:home) by WebExtensions, set your custom URLs'); } if (us.length === 1 && !newTab) { return this.tabPresenter.open(us[0], tab.id); |