Skip to content
This repository has been archived by the owner on Feb 25, 2023. It is now read-only.

Commit

Permalink
Merge pull request #24 from toasted-nutbread/support-vz
Browse files Browse the repository at this point in the history
Add term rules for zuru verbs
  • Loading branch information
FooSoft authored Dec 10, 2020
2 parents 1809f15 + 3cb4f0e commit d65c8c4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion edict.go
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ const jmdictRevision = "jmdict4"
func jmdictBuildRules(term *dbTerm) {
for _, tag := range term.DefinitionTags {
switch tag {
case "adj-i", "v1", "vk":
case "adj-i", "v1", "vk", "vz":
term.addRules(tag)
default:
if strings.HasPrefix(tag, "v5") {
Expand Down
2 changes: 1 addition & 1 deletion rikai.go
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ type rikaiEntry struct {
func rikaiBuildRules(term *dbTerm) {
for _, tag := range term.DefinitionTags {
switch tag {
case "adj-i", "v1", "vk":
case "adj-i", "v1", "vk", "vz":
term.addRules(tag)
default:
if strings.HasPrefix(tag, "v5") {
Expand Down

0 comments on commit d65c8c4

Please sign in to comment.