Skip to content

Commit

Permalink
Use appropriate number symbol for ZWL. ZWD should have unique code cu…
Browse files Browse the repository at this point in the history
…rrency. (#133)
  • Loading branch information
dkasenka authored Jun 7, 2023
1 parent 01f3174 commit 11fb01e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions currency.go
Original file line number Diff line number Diff line change
@@ -216,8 +216,8 @@ var currencies = Currencies{
YER: {Decimal: ".", Thousand: ",", Code: YER, Fraction: 2, NumericCode: "886", Grapheme: "\ufdfc", Template: "1 $"},
ZAR: {Decimal: ".", Thousand: ",", Code: ZAR, Fraction: 2, NumericCode: "710", Grapheme: "R", Template: "$1"},
ZMW: {Decimal: ".", Thousand: ",", Code: ZMW, Fraction: 2, NumericCode: "967", Grapheme: "ZK", Template: "$1"},
ZWD: {Decimal: ".", Thousand: ",", Code: ZWD, Fraction: 2, NumericCode: "932", Grapheme: "Z$", Template: "$1"},
ZWL: {Decimal: ".", Thousand: ",", Code: ZWD, Fraction: 2, NumericCode: "932", Grapheme: "Z$", Template: "$1"},
ZWD: {Decimal: ".", Thousand: ",", Code: ZWD, Fraction: 2, NumericCode: "716", Grapheme: "Z$", Template: "$1"},
ZWL: {Decimal: ".", Thousand: ",", Code: ZWL, Fraction: 2, NumericCode: "932", Grapheme: "Z$", Template: "$1"},
}

// AddCurrency lets you insert or update currency in currencies list.

0 comments on commit 11fb01e

Please sign in to comment.