diff options
author | Shin'ya Ueoka <ueokande@i-beam.org> | 2019-02-06 20:03:59 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-02-06 20:03:59 +0900 |
commit | b5a85ad059c45f6cdde432d656888710595d68a5 (patch) | |
tree | bb38f94cc8e2d1789d216f2a4820aedb752192d7 /src/background/usecases/operation.js | |
parent | 21bc06cfeb81116776c8bd4926f836c99ef9be57 (diff) | |
parent | 8abc2d8ef06e1114e90cc96a153f60da686ae1c0 (diff) |
Merge pull request #535 from sleepypikachu/fix-issue-534
Correct spelling of WebExtensions
Diffstat (limited to 'src/background/usecases/operation.js')
-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); |