aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/library/lux/time/date.lux
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/source/library/lux/time/date.lux')
-rw-r--r--stdlib/source/library/lux/time/date.lux12
1 files changed, 6 insertions, 6 deletions
diff --git a/stdlib/source/library/lux/time/date.lux b/stdlib/source/library/lux/time/date.lux
index 310be7a0e..75e5609ea 100644
--- a/stdlib/source/library/lux/time/date.lux
+++ b/stdlib/source/library/lux/time/date.lux
@@ -87,7 +87,7 @@
(def: .public epoch
Date
- (try.assumed
+ (try.trusted
(..date //year.epoch
#//month.January
..minimum_day)))
@@ -166,7 +166,7 @@
(if (and (n.>= <minimum> value)
(n.<= <maximum> value))
(in value)
- (<>.lift (exception.except <exception> [value])))))]
+ (<>.lifted (exception.except <exception> [value])))))]
[1 12 month_parser invalid_month]
)
@@ -178,9 +178,9 @@
_ (<text>.this ..separator)
utc_month ..month_parser
_ (<text>.this ..separator)
- .let [month (maybe.assume (dictionary.value utc_month ..month_by_number))]
+ .let [month (maybe.trusted (dictionary.value utc_month ..month_by_number))]
utc_day ..section_parser]
- (<>.lift (..date utc_year month utc_day))))
+ (<>.lifted (..date utc_year month utc_day))))
(def: (format value)
(-> Date Text)
@@ -337,9 +337,9 @@
(inc year)
year)]
... Coercing, because the year is already in internal form.
- (try.assumed
+ (try.trusted
(..date (:as Year year)
- (maybe.assume (dictionary.value month ..month_by_number))
+ (maybe.trusted (dictionary.value month ..month_by_number))
day))))
(implementation: .public enum