diff --git a/jmdict_constants.go b/jmdict_constants.go index b3d48c9..d1a69cb 100644 --- a/jmdict_constants.go +++ b/jmdict_constants.go @@ -9,7 +9,7 @@ const ( edrdgAttribution = "This publication has included material from the JMdict (EDICT, etc.) dictionary files in accordance with the licence provisions of the Electronic Dictionaries Research Group. See http://www.edrdg.org/" prioritySymbol = "★" - rareFormSymbol = "🅁" + rareSymbol = "🅁" irregularSymbol = "⚠" outdatedSymbol = "⛬" defaultSymbol = "㊒" diff --git a/jmdict_forms.go b/jmdict_forms.go index ad75522..409eadb 100644 --- a/jmdict_forms.go +++ b/jmdict_forms.go @@ -14,7 +14,7 @@ func (h *headword) InfoSymbols() string { infoSymbols = append(infoSymbols, prioritySymbol) } if h.IsRareKanji || h.IsRareKana { - infoSymbols = append(infoSymbols, rareFormSymbol) + infoSymbols = append(infoSymbols, rareSymbol) } if h.IsIrregular { infoSymbols = append(infoSymbols, irregularSymbol)