summaryrefslogtreecommitdiff
path: root/src/lib/modifiers/mute.ml
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/modifiers/mute.ml')
-rw-r--r--src/lib/modifiers/mute.ml4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/modifiers/mute.ml b/src/lib/modifiers/mute.ml
index 3597876..331ed1a 100644
--- a/src/lib/modifiers/mute.ml
+++ b/src/lib/modifiers/mute.ml
@@ -1,12 +1,12 @@
open StdLabels
+module T = Sounds
(** Mute the last consonant if there is no voyel in the syllabus.
This modifier is only applied in the first step, and not repeated anymore.
*)let process
: 'a Sig.modifier
- = fun (type el) m init ->
- let module T = (val m:Sounds.Sig.T with type t = el) in
+ = fun init ->
let (((v1, v2), c) , ending) = init in
let is_voyel = T.is_voyel v1 && T.is_voyel v2 in
match is_voyel, c with