diff options
Diffstat (limited to 'src/bin')
-rw-r--r-- | src/bin/dune | 2 | ||||
-rw-r--r-- | src/bin/transcriptor.ml | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/dune b/src/bin/dune index 5d49b1d..6598ae1 100644 --- a/src/bin/dune +++ b/src/bin/dune @@ -2,5 +2,5 @@ (names transcriptor ) - (libraries translator) + (libraries sounds translator) ) 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) = |