aboutsummaryrefslogtreecommitdiff
path: root/ast.h
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2024-11-17 14:49:03 -0500
committerBruce Hill <bruce@bruce-hill.com>2024-11-17 14:49:03 -0500
commit4231789b71bb42c4ab04e125f98fe5eb3cf030b6 (patch)
treec73aafaeef60b77555cfd25ccd30c618e431d52a /ast.h
parentc1ae79ac3c320923363994fb88f4cc2fa13317ce (diff)
Rename datetime -> moment
Diffstat (limited to 'ast.h')
-rw-r--r--ast.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/ast.h b/ast.h
index 3911f2ae..3535734c 100644
--- a/ast.h
+++ b/ast.h
@@ -141,7 +141,7 @@ typedef enum {
Extern,
StructDef, EnumDef, LangDef,
Index, FieldAccess, Optional, NonOptional,
- DateTime,
+ Moment,
DocTest,
Use,
InlineCCode,
@@ -309,8 +309,8 @@ struct ast_s {
ast_t *value;
} Optional, NonOptional;
struct {
- DateTime_t dt;
- } DateTime;
+ Moment_t moment;
+ } Moment;
struct {
ast_t *expr;
const char *output;