Skip to content

Commit

Permalink
Fix #181
Browse files Browse the repository at this point in the history
  • Loading branch information
bab2min committed Sep 6, 2024
1 parent 95e9f81 commit e195cfc
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/Kiwi.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -375,7 +375,8 @@ namespace kiwi
(tokens[i - 1].tag == POSTag::so
|| tokens[i - 1].tag == POSTag::sw
|| tokens[i - 1].tag == POSTag::sp
|| tokens[i - 1].tag == POSTag::se)
|| tokens[i - 1].tag == POSTag::se
|| tokens[i - 1].tag == POSTag::sso)
&& tokens[i - 1].endPos() == tokens[i].position
&& tokens[i - 1].position > tokens[i - 2].endPos();
if (nestedSentEnd)
Expand Down

0 comments on commit e195cfc

Please sign in to comment.