Skip to content

Commit

Permalink
Merge pull request #71 from shilik/patch-3
Browse files Browse the repository at this point in the history
Update jpn.morpho.mjs
  • Loading branch information
kariminf authored Oct 17, 2023
2 parents 1090067 + 176d47b commit a0182a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/jpn/jpn.morpho.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -411,7 +411,7 @@ function __jslinguaJpnStemmer(word) {

function __getVerbType(verb){
if (/(.)()$/g.test(verb)) return VType.V1;
if (/()$/g.test(verb)) return VType.V1;
if (/(|||||)$/g.test(verb)) return VType.V1;
if (/(||)$/g.test(verb)) return VType.SK;
let end = verb.slice(-1);
let bend = verb.slice(-2,-1);
Expand Down

0 comments on commit a0182a9

Please sign in to comment.