diff options
author | Sébastien Dailly <sebastien@chimrod.com> | 2021-09-05 19:41:40 +0200 |
---|---|---|
committer | Sébastien Dailly <sebastien@chimrod.com> | 2021-09-05 19:41:40 +0200 |
commit | 6a34154b77ac80f89df816ba0062f382d915fb22 (patch) | |
tree | 5dab18f15fe8555d5369a9c492228f6aa4d23001 /src/lib/modifiers/sig.ml | |
parent | 853e281a6719125866f8b948540944c571b091c6 (diff) |
Updated tests
Diffstat (limited to 'src/lib/modifiers/sig.ml')
-rw-r--r-- | src/lib/modifiers/sig.ml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/lib/modifiers/sig.ml b/src/lib/modifiers/sig.ml index 5f82620..19c4ff7 100644 --- a/src/lib/modifiers/sig.ml +++ b/src/lib/modifiers/sig.ml @@ -1,11 +1,11 @@ type voyel = Sounds.t -type 'a consonants = - { ending : 'a option option - ; opening : 'a list - ; following : 'a option } +type consonants = + { ending : Sounds.t option option + ; opening : Sounds.t list + ; following : Sounds.t option } -type 'a group = voyel * 'a consonants option +type 'a group = voyel * consonants option type 'a t = 'a group * 'a option option |