1

Merge pull request #37 from toasted-nutbread/update-vs-rules

Update how suru verb rules are detected
This commit is contained in:
Alexei Yatskov 2022-08-20 11:52:32 -07:00 committed by GitHub
commit 9222417bfd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -17,7 +17,7 @@ func jmdictBuildRules(term *dbTerm) {
default: default:
if strings.HasPrefix(tag, "v5") { if strings.HasPrefix(tag, "v5") {
term.addRules("v5") term.addRules("v5")
} else if strings.HasPrefix(tag, "vs") { } else if strings.HasPrefix(tag, "vs-") {
term.addRules("vs") term.addRules("vs")
} }
} }