aboutsummaryrefslogtreecommitdiff
path: root/src/type/display.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/type/display.rs')
-rw-r--r--src/type/display.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/type/display.rs b/src/type/display.rs
index 27f1427..b562d7b 100644
--- a/src/type/display.rs
+++ b/src/type/display.rs
@@ -32,7 +32,7 @@ impl fmt::Display for Type {
VecType => write!(f, "{}", "Vector"),
LetType => write!(f, "{}", "Let"),
NilType => write!(f, "Nil"),
- TypeLit => write!(f, "[type literal]"),
+ TypeLit => write!(f, "Type"),
VecOf(ty) => write!(f, "({} ...)", *ty),
Arrow(a, b) => write!(f, "({} -> {})", a, b),
List(types) => write!(