summaryrefslogtreecommitdiff
path: root/dhall/src/semantics/error/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'dhall/src/semantics/error/mod.rs')
-rw-r--r--dhall/src/semantics/error/mod.rs8
1 files changed, 4 insertions, 4 deletions
diff --git a/dhall/src/semantics/error/mod.rs b/dhall/src/semantics/error/mod.rs
index b2f799d..1288c12 100644
--- a/dhall/src/semantics/error/mod.rs
+++ b/dhall/src/semantics/error/mod.rs
@@ -1,9 +1,9 @@
use std::io::Error as IOError;
-use crate::core::context::TypecheckContext;
-use crate::core::value::Value;
-use crate::phase::resolve::ImportStack;
-use crate::phase::NormalizedExpr;
+use crate::semantics::core::context::TypecheckContext;
+use crate::semantics::core::value::Value;
+use crate::semantics::phase::resolve::ImportStack;
+use crate::semantics::phase::NormalizedExpr;
use crate::syntax::{BinOp, Import, Label, ParseError, Span};
pub type Result<T> = std::result::Result<T, Error>;