From 11401e75a77dfeec38936fb5381f25f5b7e7a9fb Mon Sep 17 00:00:00 2001 From: Jacob Date: Sat, 8 Feb 2025 09:25:54 -0500 Subject: [PATCH] Fixed. --- src/include/ast.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/include/ast.h b/src/include/ast.h index 31ea3b6..cbe6fd0 100644 --- a/src/include/ast.h +++ b/src/include/ast.h @@ -15,7 +15,7 @@ typedef enum { AST_TYPE_LIST, // A list (variable size, variable type). // Misc. types. - AST_TYP AST_TYPE_CALL, // A function call. + AST_TYPE_CALL, // A function call. AST_TYPE_VDEF, // A variable definition. AST_TYPE_VREF, // A variable reference. AST_TYPE_BLOCK, // A block of code (scope).