Skip to content

Commit

Permalink
chore: add missing semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
mnater committed Feb 5, 2020
1 parent df528e3 commit f5680ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/hyphenEngine.ts
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ export function hyphenate(lm: i32, rm: i32, hc: i32): i32 {
while (charOffset < wordLength) {
rowOffset2 = load<u8>(tw + charOffset) << 3;
link = load<i32>(row + rowOffset2);
value = load<i32>(row + rowOffset2, 4)
value = load<i32>(row + rowOffset2, 4);
if (value > 0) {
hyphenPointsCount = 0;
hyphenPoint = load<u8>(value);
Expand Down

0 comments on commit f5680ae

Please sign in to comment.