summaryrefslogtreecommitdiff
path: root/dhall/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'dhall/src/lib.rs')
-rw-r--r--dhall/src/lib.rs5
1 files changed, 1 insertions, 4 deletions
diff --git a/dhall/src/lib.rs b/dhall/src/lib.rs
index e9f8aa3..dbf1fc0 100644
--- a/dhall/src/lib.rs
+++ b/dhall/src/lib.rs
@@ -153,10 +153,7 @@ impl Normalized {
pub(crate) fn from_const(c: Const) -> Self {
Normalized(Value::from_const(c))
}
- pub(crate) fn from_kind_and_type(
- v: ValueKind<Value>,
- t: Normalized,
- ) -> Self {
+ pub(crate) fn from_kind_and_type(v: ValueKind, t: Normalized) -> Self {
Normalized(Value::from_kind_and_type(v, t.into_value()))
}
pub(crate) fn from_value(th: Value) -> Self {