From 59539f6297413f7e2ecafbff9e6325fd07215535 Mon Sep 17 00:00:00 2001 From: mrGoodWolf <138707027+mrGoodWolf@users.noreply.github.com> Date: Tue, 22 Aug 2023 18:03:18 -0600 Subject: [PATCH] fixed "bot" typo --- src/compiler_errors.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/compiler_errors.c b/src/compiler_errors.c index 0aefce2..e37da94 100644 --- a/src/compiler_errors.c +++ b/src/compiler_errors.c @@ -9,7 +9,7 @@ void assert_call_matches_signature(AST_T* call_node, AST_T* func_node) if (actual_nr_args < expected_nr_args) { fprintf(stderr, - "[Compilation Error]: `%s` expected \033[1;32m%d\033[0m arguments bot got \033[1;31m%d\033[0m.\n", + "[Compilation Error]: `%s` expected \033[1;32m%d\033[0m arguments but got \033[1;31m%d\033[0m.\n", func_node->name, expected_nr_args, actual_nr_args