aboutsummaryrefslogtreecommitdiff
path: root/types.h
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2025-03-17 22:22:46 -0400
committerBruce Hill <bruce@bruce-hill.com>2025-03-17 22:22:46 -0400
commit5109fad68b801a5e89da69976a1a8a4d819d1689 (patch)
treeb87e32b769c17372b82080f314a7082c330fdabe /types.h
parentca62aa365faee27895f8cb1eccddd7af8a7d15c9 (diff)
Fully rename array to list
Diffstat (limited to 'types.h')
-rw-r--r--types.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/types.h b/types.h
index 780c4d5c..0bca1d0a 100644
--- a/types.h
+++ b/types.h
@@ -6,7 +6,7 @@
#include <stdlib.h>
#include "ast.h"
-#include "stdlib/arrays.h"
+#include "stdlib/lists.h"
typedef struct type_s type_t;
@@ -50,7 +50,7 @@ struct type_s {
CStringType,
MomentType,
TextType,
- ArrayType,
+ ListType,
SetType,
TableType,
FunctionType,
@@ -85,7 +85,7 @@ struct type_s {
} TextType;
struct {
type_t *item_type;
- } ArrayType;
+ } ListType;
struct {
type_t *item_type;
} SetType;