summaryrefslogtreecommitdiff
path: root/dhall
diff options
context:
space:
mode:
authorNadrieril2019-04-04 21:43:41 +0200
committerNadrieril2019-04-04 21:43:41 +0200
commit3e4b2dcb8c371045737901c0d49f9d9403109ea0 (patch)
treeaa218fd266112604a63390e8a45b3cef0c84f3b6 /dhall
parent08596e55a3e71f2fd636494aaa232e1cf476e4ac (diff)
Get keyword rule from upstream
Diffstat (limited to 'dhall')
-rw-r--r--dhall/src/normalize.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/dhall/src/normalize.rs b/dhall/src/normalize.rs
index a3a2318..d9bd08a 100644
--- a/dhall/src/normalize.rs
+++ b/dhall/src/normalize.rs
@@ -107,7 +107,7 @@ where
break dhall_expr!(
g
(List a0)
- (λ(a : a0) -> λ(as : List a1) -> [ a ] # as)
+ (λ(x : a0) -> λ(xs : List a1) -> [ x ] # xs)
([] : List a0)
);
}