From 44cd26f2cebd760a53aa4ff1b7779e718a101650 Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Sun, 6 Apr 2025 22:45:02 -0400 Subject: Rename Array -> List in all code and docs --- src/types.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/types.h') diff --git a/src/types.h b/src/types.h index 2d2bd2a3..33e54ff5 100644 --- a/src/types.h +++ b/src/types.h @@ -47,7 +47,7 @@ struct type_s { NumType, CStringType, TextType, - ArrayType, + ListType, SetType, TableType, FunctionType, @@ -81,7 +81,7 @@ struct type_s { } TextType; struct { type_t *item_type; - } ArrayType; + } ListType; struct { type_t *item_type; } SetType; -- cgit v1.2.3