summaryrefslogtreecommitdiff
path: root/dhall/src/semantics/tck/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'dhall/src/semantics/tck/mod.rs')
-rw-r--r--dhall/src/semantics/tck/mod.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/dhall/src/semantics/tck/mod.rs b/dhall/src/semantics/tck/mod.rs
index 1df2a48..93c8f48 100644
--- a/dhall/src/semantics/tck/mod.rs
+++ b/dhall/src/semantics/tck/mod.rs
@@ -1,6 +1,6 @@
pub mod env;
-pub mod tyexpr;
+pub mod tir;
pub mod typecheck;
pub(crate) use env::*;
-pub(crate) use tyexpr::*;
+pub(crate) use tir::*;
pub(crate) use typecheck::*;