From 278057dddf55fb6236d129106ad1ce5ed7a0aa0b Mon Sep 17 00:00:00 2001 From: Filip Tibell Date: Sat, 16 Sep 2023 21:38:07 -0500 Subject: [PATCH] Fix indentation in datetime typedefs --- types/DateTime.luau | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/types/DateTime.luau b/types/DateTime.luau index 4b6092f..b4cd66f 100644 --- a/types/DateTime.luau +++ b/types/DateTime.luau @@ -255,10 +255,8 @@ end 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. - 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. + - 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. + - 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 @return DateTime -- The new DateTime object @@ -288,10 +286,8 @@ end 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. - 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. + - 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. + - 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 @return DateTime -- The new DateTime object