aboutsummaryrefslogtreecommitdiff
path: root/types.h
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2024-03-03 18:15:45 -0500
committerBruce Hill <bruce@bruce-hill.com>2024-03-03 18:15:45 -0500
commit8fab88c56f95c03ffcb4be178f5dbb21b239d95e (patch)
tree3c2e721b8ea55d43b94fa9f315659580652573c5 /types.h
parent07f0a18136a7883d1f3edd3e08253bd3020294a8 (diff)
Rename Str -> Text
Diffstat (limited to 'types.h')
-rw-r--r--types.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/types.h b/types.h
index 073bbe3b..1a0e8edb 100644
--- a/types.h
+++ b/types.h
@@ -37,7 +37,7 @@ struct type_s {
BoolType,
IntType,
NumType,
- StringType,
+ TextType,
ArrayType,
TableType,
FunctionType,
@@ -59,7 +59,7 @@ struct type_s {
} NumType;
struct {
const char *dsl;
- } StringType;
+ } TextType;
struct {
type_t *item_type;
} ArrayType;