From f5680ae5e3e3bd9ad1f0c659724c7e05eb056408 Mon Sep 17 00:00:00 2001 From: mnater Date: Wed, 5 Feb 2020 01:19:35 +0100 Subject: [PATCH] chore: add missing semicolon --- src/hyphenEngine.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hyphenEngine.ts b/src/hyphenEngine.ts index e65c70c1..f4eaa1cb 100644 --- a/src/hyphenEngine.ts +++ b/src/hyphenEngine.ts @@ -173,7 +173,7 @@ export function hyphenate(lm: i32, rm: i32, hc: i32): i32 { while (charOffset < wordLength) { rowOffset2 = load(tw + charOffset) << 3; link = load(row + rowOffset2); - value = load(row + rowOffset2, 4) + value = load(row + rowOffset2, 4); if (value > 0) { hyphenPointsCount = 0; hyphenPoint = load(value);