aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/library/lux/time/month.lux
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--stdlib/source/library/lux/time/month.lux12
1 files changed, 6 insertions, 6 deletions
diff --git a/stdlib/source/library/lux/time/month.lux b/stdlib/source/library/lux/time/month.lux
index 1916819c2..a9ac9c6bd 100644
--- a/stdlib/source/library/lux/time/month.lux
+++ b/stdlib/source/library/lux/time/month.lux
@@ -80,11 +80,11 @@
(exception: .public (invalid_month [number Nat])
(exception.report
- ["Number" (# n.decimal encoded number)]
- ["Valid range" ($_ "lux text concat"
- (# n.decimal encoded (..number {#January}))
- " ~ "
- (# n.decimal encoded (..number {#December})))]))
+ "Number" (# n.decimal encoded number)
+ "Valid range" ($_ "lux text concat"
+ (# n.decimal encoded (..number {#January}))
+ " ~ "
+ (# n.decimal encoded (..number {#December})))))
(def: .public (by_number number)
(-> Nat (Try Month))
@@ -209,7 +209,7 @@
(exception: .public (not_a_month_of_the_year [value Text])
(exception.report
- ["Value" (text.format value)]))
+ "Value" (text.format value)))
(implementation: .public codec
(Codec Text Month)