summaryrefslogtreecommitdiffstats
path: root/lib/iban.ml
diff options
context:
space:
mode:
Diffstat (limited to 'lib/iban.ml')
-rw-r--r--lib/iban.ml4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/iban.ml b/lib/iban.ml
index 1db6c7b..fbea774 100644
--- a/lib/iban.ml
+++ b/lib/iban.ml
@@ -1,11 +1,11 @@
1open Core 1open Prelude
2open Option.Let_syntax 2open Option.Let_syntax
3 3
4type t = string 4type t = string
5 5
6(* Modulo-97 arithmetic. Prevents us from having to use Zarith here. *) 6(* Modulo-97 arithmetic. Prevents us from having to use Zarith here. *)
7module M97 : sig 7module M97 : sig
8 type t 8 type t = private int
9 9
10 val of_int : int -> t 10 val of_int : int -> t
11 val lt : t -> t -> bool 11 val lt : t -> t -> bool