summaryrefslogtreecommitdiff
path: root/src/lib/modifiers/sig.ml
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/modifiers/sig.ml')
-rw-r--r--src/lib/modifiers/sig.ml4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/modifiers/sig.ml b/src/lib/modifiers/sig.ml
index 938c50e..1485247 100644
--- a/src/lib/modifiers/sig.ml
+++ b/src/lib/modifiers/sig.ml
@@ -7,6 +7,6 @@ type 'a consonants =
type 'a group = 'a voyel * 'a consonants option
-type 'a modifier = (module Sounds.T with type t = 'a) -> ('a group * 'a option option) -> ('a group * 'a option option)
-
+type 'a t = 'a group * 'a option option
+type 'a modifier = (module Sounds.T with type t = 'a) -> 'a t -> 'a t