diff options
author | Sébastien Dailly <sebastien@chimrod.com> | 2021-09-04 10:43:01 +0200 |
---|---|---|
committer | Sébastien Dailly <sebastien@chimrod.com> | 2021-09-04 10:43:01 +0200 |
commit | 0ba049daed6e4b5d01f83d236f3178747bf849cb (patch) | |
tree | 72eeedcaa5fbe9736e2842879d62d0bf412a149f /src/lib/modifiers/sig.ml | |
parent | 0b2e63791a073000b70b4463db5d8bce88ab4d23 (diff) |
Transform the letter e into eu or E
Diffstat (limited to 'src/lib/modifiers/sig.ml')
-rw-r--r-- | src/lib/modifiers/sig.ml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/modifiers/sig.ml b/src/lib/modifiers/sig.ml index bcc4af2..5f82620 100644 --- a/src/lib/modifiers/sig.ml +++ b/src/lib/modifiers/sig.ml @@ -1,12 +1,12 @@ -type 'a voyel = ('a * 'a) +type voyel = Sounds.t type 'a consonants = { ending : 'a option option ; opening : 'a list ; following : 'a option } -type 'a group = 'a voyel * 'a consonants option +type 'a group = voyel * 'a consonants option type 'a t = 'a group * 'a option option -type 'a modifier = 'a t -> 'a t +type 'a modifier = Sounds.t t -> Sounds.t t |