Fix typo
This commit is contained in:
parent
ba52787271
commit
c1cbc359e9
1 changed files with 1 additions and 1 deletions
|
@ -34,7 +34,7 @@ typedef struct {
|
|||
#define BOOL_VAL(value) ((Value){VAL_BOOL, {.boolean = value}})
|
||||
#define NIL_VAL ((Value){VAL_NIL, {.number = 0}})
|
||||
#define NUMBER_VAL(value) ((Value){VAL_NUMBER, {.number = value}})
|
||||
#define OBJ_VAL(value) ((Value){VAL_OBJ, {.obj = (Obj *)object}})
|
||||
#define OBJ_VAL(value) ((Value){VAL_OBJ, {.obj = (Obj *)value}})
|
||||
|
||||
typedef struct {
|
||||
int capacity;
|
||||
|
|
Loading…
Reference in a new issue