fmt: break-separators=before; + wip Future_sign_key

This commit is contained in:
swrup 2025-10-06 21:42:24 +02:00
parent 68b5e6608a
commit c991f29b28
7 changed files with 51 additions and 32 deletions

View file

@ -27,9 +27,9 @@ let currency_to_string = function `Eur -> "EUR"
(* Values that represent an amount are in the usual amount syntax: CURRENCY:VALUE.FRACTION,
e.g. EUR:1.50. The FRACTION portion may extend up to 8 places. *)
type value = {
currency: [ `Eur ]
; value: int
; fraction: int
currency: [ `Eur ];
value: int;
fraction: int;
}
let currency_round_unit = { currency= `Eur; value= 0; fraction= 1 }