diff options
author | Sébastien Dailly <sebastien@chimrod.com> | 2021-09-03 15:15:00 +0200 |
---|---|---|
committer | Sébastien Dailly <sebastien@chimrod.com> | 2021-09-03 15:15:00 +0200 |
commit | 48dc04c3b9afe19207d15b873452129d9c2b3b4c (patch) | |
tree | 2c46df86808aa738a28ce95d5b62a58ffaf12459 /src/lib/process.ml | |
parent | ad45e1b397ba995dc0222057a8dc1d0c38970c4f (diff) |
Continued refactoring
Diffstat (limited to 'src/lib/process.ml')
-rw-r--r-- | src/lib/process.ml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/process.ml b/src/lib/process.ml index d0d1884..13a24a1 100644 --- a/src/lib/process.ml +++ b/src/lib/process.ml @@ -1,6 +1,6 @@ open StdLabels -module M(T:Sounds.T) = struct +module M(T:Sounds.Sig.T) = struct type voyel = T.t Modifiers.Sig.voyel @@ -19,7 +19,7 @@ module M(T:Sounds.T) = struct = fun e m -> List.fold_left m ~init:e - ~f:(fun e f -> f (module T:Sounds.T with type t = T.t) e) + ~f:(fun e f -> f (module T:Sounds.Sig.T with type t = T.t) e) let change_voyel = fun init -> |