Fix indentation in datetime typedefs

This commit is contained in:
Filip Tibell 2023-09-16 21:38:07 -05:00
parent 5a6a8a0931
commit 278057dddf
No known key found for this signature in database

View file

@ -255,10 +255,8 @@ end
This constructor is fallible and may throw an error in the following situations: This constructor is fallible and may throw an error in the following situations:
- Date units (year, month, day) that produce an invalid date will raise an error. - Date units (year, month, day) that produce an invalid date will raise an error. For example, January 32nd or February 29th on a non-leap year.
For example, January 32nd or February 29th on a non-leap year. - Non-integer values are rounded down. For example, providing 2.5 hours is equivalent to providing 2 hours, not 2 hours and 30 minutes.
- Non-integer values are rounded down. For example, providing 2.5 hours
is equivalent to providing 2 hours, not 2 hours and 30 minutes.
@param dateTime -- Table containing date & time values @param dateTime -- Table containing date & time values
@return DateTime -- The new DateTime object @return DateTime -- The new DateTime object
@ -288,10 +286,8 @@ end
This constructor is fallible and may throw an error in the following situations: This constructor is fallible and may throw an error in the following situations:
- Date units (year, month, day) that produce an invalid date will raise an error. - Date units (year, month, day) that produce an invalid date will raise an error. For example, January 32nd or February 29th on a non-leap year.
For example, January 32nd or February 29th on a non-leap year. - Non-integer values are rounded down. For example, providing 2.5 hours is equivalent to providing 2 hours, not 2 hours and 30 minutes.
- Non-integer values are rounded down. For example, providing 2.5 hours
is equivalent to providing 2 hours, not 2 hours and 30 minutes.
@param dateTime -- Table containing date & time values @param dateTime -- Table containing date & time values
@return DateTime -- The new DateTime object @return DateTime -- The new DateTime object