From d2ed5f0298b24bb1131f8eddd1668639c14c7717 Mon Sep 17 00:00:00 2001 From: Bad Diode Date: Wed, 22 Dec 2021 18:32:58 +0100 Subject: Fix typo in enum name --- src/parser.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/parser.h') diff --git a/src/parser.h b/src/parser.h index c26e265..2604be4 100644 --- a/src/parser.h +++ b/src/parser.h @@ -44,10 +44,10 @@ typedef enum Builtin { BUILTIN_IS_ZERO, BUILTIN_IS_FIXNUM, BUILTIN_IS_BOOL, - BUILTIN_IS_PRINT, - BUILTIN_IS_CONS, - BUILTIN_IS_CAR, - BUILTIN_IS_CDR, + BUILTIN_PRINT, + BUILTIN_CONS, + BUILTIN_CAR, + BUILTIN_CDR, } Builtin; typedef struct Object { -- cgit v1.2.1