diff options
author | Sébastien Dailly <sebastien@chimrod.com> | 2021-08-27 14:37:24 +0200 |
---|---|---|
committer | Sébastien Dailly <sebastien@chimrod.com> | 2021-08-27 14:37:24 +0200 |
commit | c8b49eed4cf92e7d2dd01dce779ef84ccae733eb (patch) | |
tree | 753547fc766a616e9c47aa78b32f047e73e7a7ef /src/bin/transcriptor.ml | |
parent | 65d5990607e9542aa847ec7cb684afd3ffdedb8f (diff) |
Splitted modifiers in own library
Diffstat (limited to 'src/bin/transcriptor.ml')
-rw-r--r-- | src/bin/transcriptor.ml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/transcriptor.ml b/src/bin/transcriptor.ml index 2378c5d..d8cc6db 100644 --- a/src/bin/transcriptor.ml +++ b/src/bin/transcriptor.ml @@ -1,7 +1,7 @@ module T = Translator module P = T.Parser -module Parser = P.Make(T.Sounds) +module Parser = P.Make(Sounds) module I = Parser.MenhirInterpreter let process (optional_line : string option) = |