aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortoasted-nutbread <toasted-nutbread@users.noreply.github.com>2019-11-26 12:50:46 -0500
committertoasted-nutbread <toasted-nutbread@users.noreply.github.com>2019-11-26 22:06:27 -0500
commit63a775ebcafc8d0477bc267ef39e40c4d3283666 (patch)
treeb1a1ea3ae8d943e5febfb223e59b3bb59759b876
parentdf9e697fca759afeaa794e6370d612bbc1ef17e0 (diff)
Add missing semicolon
-rw-r--r--ext/bg/js/mecab.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/bg/js/mecab.js b/ext/bg/js/mecab.js
index 297432e2..62111f73 100644
--- a/ext/bg/js/mecab.js
+++ b/ext/bg/js/mecab.js
@@ -81,7 +81,7 @@ class Mecab {
delete this.listeners[sequence];
reject(new Error(`Mecab invoke timed out in ${Mecab.timeout} ms`));
}, Mecab.timeout)
- }
+ };
this.port.postMessage({action, params, sequence});
});