Skip to content

Commit

Permalink
fix(cmd/uymas):pinyin --all option inaccuracy
Browse files Browse the repository at this point in the history
  • Loading branch information
conero committed May 19, 2024
1 parent e20b547 commit 8c4222d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/uymas/defaultApp.go
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ func (c *defaultApp) Pinyin() {
} else if c.Cc.CheckSetting("alpha", "a") {
line = pinyinCache.GetPyToneAlpha(words)
} else if c.Cc.CheckSetting("all", "A") {
line = "原始拼音:" + pinyinCache.GetPyToneNumber(words) + "\n" +
line = "原始拼音:" + pinyinCache.GetPyTone(words) + "\n" +
"数字声调拼音:" + pinyinCache.GetPyToneNumber(words) + "\n" +
"字母拼音:" + pinyinCache.GetPyToneAlpha(words)
} else {
Expand Down

0 comments on commit 8c4222d

Please sign in to comment.