From 11fb01ee0a561feb7a831160e90b0fdef19b891e Mon Sep 17 00:00:00 2001 From: Dzmitry Kasenka <99190728+dkasenka@users.noreply.github.com> Date: Wed, 7 Jun 2023 21:04:20 +0200 Subject: [PATCH] Use appropriate number symbol for ZWL. ZWD should have unique code currency. (#133) --- currency.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/currency.go b/currency.go index d61bd7a..014aec4 100644 --- a/currency.go +++ b/currency.go @@ -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.