summaryrefslogtreecommitdiff
path: root/dhall_syntax/src/core/expr.rs
diff options
context:
space:
mode:
authorNadrieril2019-08-06 23:03:01 +0200
committerNadrieril2019-08-06 23:03:01 +0200
commitf7b0c6b9c52f65624dc765fb9eaa7d0d94eeae76 (patch)
treeb72b50561bb3f6f335699c76402819ed20bf42b9 /dhall_syntax/src/core/expr.rs
parenta307a13738ccca538635ae796e6c998439025b9b (diff)
Generalize empty list annotations
Diffstat (limited to '')
-rw-r--r--dhall_syntax/src/core/expr.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/dhall_syntax/src/core/expr.rs b/dhall_syntax/src/core/expr.rs
index e33859b..14dc165 100644
--- a/dhall_syntax/src/core/expr.rs
+++ b/dhall_syntax/src/core/expr.rs
@@ -190,7 +190,7 @@ pub enum ExprF<SubExpr, Embed> {
DoubleLit(Double),
/// `"Some ${interpolated} text"`
TextLit(InterpolatedText<SubExpr>),
- /// `[] : List t`
+ /// `[] : t`
EmptyListLit(SubExpr),
/// `[x, y, z]`
NEListLit(Vec<SubExpr>),