From c07a20413dc41e50ed9ca7799de10ae74266d625 Mon Sep 17 00:00:00 2001 From: James Tomasino <james@tomasino.org> Date: Sun, 20 Jun 2021 17:41:17 +0000 Subject: [PATCH] otherPuncDelay applies to any punctuation other than sentence delay --- src-content/lib/word.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src-content/lib/word.js b/src-content/lib/word.js index dcc697c..303016d 100644 --- a/src-content/lib/word.js +++ b/src-content/lib/word.js @@ -41,7 +41,7 @@ export default class Word { this.hasPeriod = true } - if (!this.hasPeriod && !this.hasLeadingQuote && !this.hasTrailingQuote && locale.puncRegex.test(this.val)) { + if (!this.hasPeriod && locale.puncRegex.test(this.val)) { this.hasOtherPunc = true } }