Fix node type typo

This commit is contained in:
2024-02-25 00:02:40 +00:00
parent 2d31233a1e
commit a86b025f7d
2 changed files with 5 additions and 5 deletions

View File

@@ -14,10 +14,10 @@ typedef union node_data node_data;
typedef struct node node;
enum node_type {
NODEYPE_IO,
NODEYPE_OP,
NODE_TYPE_IO,
NODE_TYPE_OP,
COUNT_NODEYPES,
COUNT_NODE_TYPES,
};
union node_data {