From ea7a1a9b17f9a383baf6b5119103a95f81c05409 Mon Sep 17 00:00:00 2001 From: xerox Date: Fri, 13 Dec 2019 15:39:20 -0800 Subject: [PATCH] Update include.h --- includes/include.h | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/includes/include.h b/includes/include.h index f9eb56c..b524c86 100644 --- a/includes/include.h +++ b/includes/include.h @@ -6,8 +6,7 @@ #include "../hashmap/map.h" /** - * VariableType is a enum of type struct that holds the varible types that will - * be inside of my language. + * VariableType is a enum of varible types that will be inside of my language. */ typedef enum variable_type { @@ -29,7 +28,7 @@ typedef struct variable_values { char *_string; int _int; double _double; - void* _void_pointer; + void* _void_pointer; //TODO create a concept of "void" } variable_values;