diff options
author | Sébastien Dailly <sebastien@chimrod.com> | 2021-08-28 20:01:54 +0200 |
---|---|---|
committer | Sébastien Dailly <sebastien@chimrod.com> | 2021-08-28 20:01:54 +0200 |
commit | 3b8c136ebdba7f4b5b4d6baad08d0a75c3b2dc86 (patch) | |
tree | 62341b36574a0ded0d4fe38ea9ec16036f27dfd4 /src/lib/modifiers/sig.ml | |
parent | 26faec7a69051f639b50c8e8741f0823c6be52a2 (diff) |
Update
Diffstat (limited to 'src/lib/modifiers/sig.ml')
-rw-r--r-- | src/lib/modifiers/sig.ml | 4 |
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 |