From 739b98044faf06b3e8a1012b8ea4e304e71cb52c Mon Sep 17 00:00:00 2001 From: Ian McLerran Date: Fri, 6 Dec 2024 17:09:09 -0600 Subject: [PATCH] fix module docs --- package/Date.roc | 1 - package/DateTime.roc | 1 - package/Duration.roc | 1 - package/Time.roc | 1 - 4 files changed, 4 deletions(-) diff --git a/package/Date.roc b/package/Date.roc index c9c1c1f..edb1d1a 100644 --- a/package/Date.roc +++ b/package/Date.roc @@ -1,7 +1,6 @@ ## The Date module provides the `Date` type, as well as various functions for working with dates. ## ## These functions include functions for creating dates from varioius numeric values, converting dates to and from ISO 8601 strings, and performing arithmetic operations on dates. - module [ addDateAndDuration, addDays, diff --git a/package/DateTime.roc b/package/DateTime.roc index 132462b..28443ba 100644 --- a/package/DateTime.roc +++ b/package/DateTime.roc @@ -1,7 +1,6 @@ ## The DateTime module provides the `DateTime` type as well as functions for working with combined date and time values. ## ## These functions include functions for creating `DateTime` objects from various numeric values, converting `DateTime`s to and from ISO 8601 strings, and performing arithmetic operations on `DateTime`s. - module [ addDateTimeAndDuration, addDays, diff --git a/package/Duration.roc b/package/Duration.roc index 0294008..0c6052a 100644 --- a/package/Duration.roc +++ b/package/Duration.roc @@ -1,5 +1,4 @@ ## The duration modules provides the `Duration` type and associated functions for representing time durations and performing date/time arithmetic. - module [ addDurations, Duration, diff --git a/package/Time.roc b/package/Time.roc index 44a73ad..8cc8ed9 100644 --- a/package/Time.roc +++ b/package/Time.roc @@ -1,7 +1,6 @@ ## The Time module provides the `Time` type as well as functions for working with time values. ## ## These functions include functions for creating `Time` objects from various numeric values, converting `Time`s to and from ISO 8601 strings, and performing arithmetic operations on `Time`s. - module [ addDurationAndTime, addHours,