Skip to content

Commit

Permalink
Merge pull request #72 from shilik/patch-4
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 a0182a9 + dc4b136 commit eb72a9d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/jpn/jpn.morpho.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,7 @@ const ruV5List = {
"遮": 1, "遷": 1, "選": 1, "遺": 1, "避": 1, "還": 1, "配": 1, "釁": 1, "重": 1, "量": 1, "釣": 1,
"鈍": 1, "錯": 1, "録": 1, "鐫": 1, "鑽": 1, "関": 1, "阿": 1, "限": 1, "陞": 1, "陥": 1, "陰": 1,
"障": 1, "隠": 1, "隣": 1, "雕": 1, "霾": 1, "頻": 1, "頼": 1, "飜": 1, "飾": 1, "馘": 1, "香": 1,
"駆": 1, "騙": 1, "驕": 1, "鳴": 1, "鴨": 1, "黙": 1, "齧": 1
"駆": 1, "騙": 1, "驕": 1, "鳴": 1, "鴨": 1, "黙": 1, "齧": 1, "降": 1
};

const jpnSuff = [
Expand Down Expand Up @@ -423,7 +423,7 @@ function __getVerbType(verb){
}

{//If it ends with these; it is Godan
let v5r = /(||||||||||||)$/g;
let v5r = /(|||||||||||||)$/g;
if (v5r.test(verb) || ruV5List[bend]) return VType.V5;
}

Expand Down

0 comments on commit eb72a9d

Please sign in to comment.