From c1728914c63b18d52c03399fa8f90e00d454d39c Mon Sep 17 00:00:00 2001 From: gingerBill Date: Sun, 4 Feb 2018 21:34:45 +0000 Subject: [PATCH] Fix typos `#type_alias` --- src/check_expr.cpp | 2 +- src/check_type.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/check_expr.cpp b/src/check_expr.cpp index 9b25f2655..0f874f5cd 100644 --- a/src/check_expr.cpp +++ b/src/check_expr.cpp @@ -6256,7 +6256,7 @@ gbString write_expr_to_string(gbString str, AstNode *node) { case_end; case_ast_node(ht, AliasType, node); - str = gb_string_appendc(str, "#alias "); + str = gb_string_appendc(str, "#type_alias "); str = write_expr_to_string(str, ht->type); case_end; diff --git a/src/check_type.cpp b/src/check_type.cpp index 4beb88bdb..167b55c75 100644 --- a/src/check_type.cpp +++ b/src/check_type.cpp @@ -1964,7 +1964,7 @@ bool check_type_internal(Checker *c, AstNode *e, Type **type, Type *named_type) case_end; case_ast_node(at, AliasType, e); - error(e, "Invalid use of '#alias'"); + error(e, "Invalid use of '#type_alias'"); // NOTE(bill): Treat it as a HelperType to remove errors return check_type_internal(c, at->type, type, named_type); case_end;