aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorChloe Kudryavtsev <code@toast.bunkerlabs.net>2023-05-30 23:59:35 +0200
committerChloe Kudryavtsev <code@toast.bunkerlabs.net>2023-05-30 23:59:35 +0200
commitdeffc11999809c31b86cfb737d259da10b01e7b9 (patch)
tree24aa56a410fd706e6467215b4507b70ad7d104cc /src
parentremove jd_time_{localtime,utc} (diff)
adjust abstract type names with namespace
Diffstat (limited to 'src')
-rw-r--r--src/time.c2
-rw-r--r--src/tm.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/time.c b/src/time.c
index eaa7cad..da190cf 100644
--- a/src/time.c
+++ b/src/time.c
@@ -30,7 +30,7 @@ static void jd_time_tostring(void *p, JanetBuffer *buffer) {
}
static const JanetAbstractType jd_time_t = {
- "time",
+ "date/time",
NULL,
NULL,
jd_time_get,
diff --git a/src/tm.c b/src/tm.c
index 5f82238..9385190 100644
--- a/src/tm.c
+++ b/src/tm.c
@@ -178,7 +178,7 @@ static void jd_tm_tostring(void *p, JanetBuffer *buffer) {
}
static const JanetAbstractType jd_tm_t = {
- "tm",
+ "date/tm",
NULL,
NULL,
jd_tm_get,