Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
Signed-off-by: George Lemon <[email protected]>
  • Loading branch information
georgelemon committed Aug 23, 2023
1 parent 4a01135 commit a1ca226
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/money.nim
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ type
negative, rtl: bool

const
Currencies*: array[161, Currency] = [
Currencies*: array[155, Currency] = [
("ALGERIAN DINAR", DZD, 2),
("ANGOLA KWANZA", AOA, 2),
("ARGENTINE PESO", ARS, 2),
Expand Down Expand Up @@ -502,7 +502,7 @@ proc contains*(x: Money, currency: Alpha3): bool =
proc coupon*[M: Money](amount: var M, discount: M) =
discard # todo

proc coupon*(amount: var M, discount: float) =
proc coupon*(amount: var Money, discount: float) =
discard # todo

proc `$`*(symbol: Alpha3): string =
Expand Down

0 comments on commit a1ca226

Please sign in to comment.