aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/documentation/lux/time/month.lux
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--stdlib/source/documentation/lux/time/month.lux38
1 files changed, 17 insertions, 21 deletions
diff --git a/stdlib/source/documentation/lux/time/month.lux b/stdlib/source/documentation/lux/time/month.lux
index ccd31a8c4..05103ec1f 100644
--- a/stdlib/source/documentation/lux/time/month.lux
+++ b/stdlib/source/documentation/lux/time/month.lux
@@ -1,7 +1,7 @@
(.require
[library
[lux (.except and)
- ["$" documentation (.only documentation:)]
+ ["$" documentation]
[data
["[0]" text (.only \n)
["%" \\format (.only format)]]]
@@ -10,29 +10,11 @@
[\\library
["[0]" /]])
-(documentation: /.Month
- "A month of the year.")
-
-(documentation: /.days
- "The amount of days of a month."
- [(days month)])
-
-(documentation: /.leap_year_days
- "The amount of days of a month (in a leap year)."
- [(leap_year_days month)])
-
-(documentation: /.year
- "All the months, ordered by when they come in a year.")
-
(.def .public documentation
(.List $.Module)
($.module /._
""
- [..Month
- ..days
- ..leap_year_days
- ..year
- ($.default /.equivalence)
+ [($.default /.equivalence)
($.default /.number)
($.default /.invalid_month)
($.default /.by_number)
@@ -40,5 +22,19 @@
($.default /.order)
($.default /.enum)
($.default /.not_a_month_of_the_year)
- ($.default /.codec)]
+ ($.default /.codec)
+
+ ($.documentation /.Month
+ "A month of the year.")
+
+ ($.documentation /.days
+ "The amount of days of a month."
+ [(days month)])
+
+ ($.documentation /.leap_year_days
+ "The amount of days of a month (in a leap year)."
+ [(leap_year_days month)])
+
+ ($.documentation /.year
+ "All the months, ordered by when they come in a year.")]
[]))