Skip to content

Commit

Permalink
Merge pull request #64 from Nitrino/master
Browse files Browse the repository at this point in the history
Fix COP, COU, MXN, MXV exponents
  • Loading branch information
Nitrino authored Apr 18, 2017
2 parents 1669cb6 + c526bb5 commit 16115ec
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions lib/money/currency.ex
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@ defmodule Money.Currency do
CLF: %{name: "Chilean Peso Unidades de fomento", symbol: "$", exponent: 4},
CLP: %{name: "Chilean Peso Unidades de fomento", symbol: "$", exponent: 0},
CNY: %{name: "Yuan Renminbi", symbol: "¥", exponent: 2},
COP: %{name: "Colombian Peso", symbol: "$", exponent: 4},
COU: %{name: "Colombian Peso Unidad de Valor Real", symbol: "$", exponent: 4},
COP: %{name: "Colombian Peso", symbol: "$", exponent: 2},
COU: %{name: "Colombian Peso Unidad de Valor Real", symbol: "$", exponent: 2},
CRC: %{name: "Costa Rican Colon", symbol: "₡", exponent: 2},
CUC: %{name: "Cuban Peso Peso Convertible", symbol: "₱", exponent: 2},
CUP: %{name: "Cuban Peso Peso Convertible", symbol: "₱", exponent: 2},
Expand Down Expand Up @@ -123,8 +123,8 @@ defmodule Money.Currency do
MUR: %{name: "Mauritius Rupee", symbol: "₨", exponent: 2},
MVR: %{name: "Rufiyaa", symbol: " ", exponent: 2},
MWK: %{name: "Kwacha", symbol: " ", exponent: 2},
MXN: %{name: "Mexican Peso", symbol: "$", exponent: 4},
MXV: %{name: "Mexican Peso Mexican Unidad de Inversion (UDI)", symbol: "UDI", exponent: 4},
MXN: %{name: "Mexican Peso", symbol: "$", exponent: 2},
MXV: %{name: "Mexican Peso Mexican Unidad de Inversion (UDI)", symbol: "UDI", exponent: 2},
MYR: %{name: "Malaysian Ringgit", symbol: "RM", exponent: 2},
MZN: %{name: "Metical", symbol: "MT", exponent: 2},
NAD: %{name: "Rand Namibia Dollar", symbol: " ", exponent: 2},
Expand Down

0 comments on commit 16115ec

Please sign in to comment.