ref: fix money locale example

This commit is contained in:
chunmeng
2020-08-03 20:59:08 +08:00
parent 5d43949b09
commit 37ad8ab2bc
7 changed files with 7 additions and 7 deletions

View File

@@ -93,7 +93,7 @@ func date(fomate string,t time.Time) string{
en["money"] ="USD %d"
cn["money"] ="¥%d元"
fmt.Println(money_format(msg(lang,"date_format"),100))
fmt.Println(money_format(msg(lang,"money"),100))
func money_format(fomate string,money int64) string{
return fmt.Sprintf(fomate,money)