aboutsummaryrefslogtreecommitdiff
path: root/src/background/usecases/operation.js
diff options
context:
space:
mode:
authorShin'ya Ueoka <ueokande@i-beam.org>2019-02-06 20:03:59 +0900
committerGitHub <noreply@github.com>2019-02-06 20:03:59 +0900
commitb5a85ad059c45f6cdde432d656888710595d68a5 (patch)
treebb38f94cc8e2d1789d216f2a4820aedb752192d7 /src/background/usecases/operation.js
parent21bc06cfeb81116776c8bd4926f836c99ef9be57 (diff)
parent8abc2d8ef06e1114e90cc96a153f60da686ae1c0 (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.js2
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);