From 5ebc0541d2933163a2353c761d007d76c510573f Mon Sep 17 00:00:00 2001 From: Aaron Franke Date: Tue, 21 Feb 2023 02:55:44 -0600 Subject: [PATCH] Fix incorrect Time documentation in get_datetime_dict_from_unix_time --- doc/classes/Time.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/classes/Time.xml b/doc/classes/Time.xml index 1abe017a4d5d..ca2a6bec36c8 100644 --- a/doc/classes/Time.xml +++ b/doc/classes/Time.xml @@ -64,7 +64,7 @@ - Converts the given Unix timestamp to a dictionary of keys: [code]year[/code], [code]month[/code], [code]day[/code], and [code]weekday[/code]. + Converts the given Unix timestamp to a dictionary of keys: [code]year[/code], [code]month[/code], [code]day[/code], [code]weekday[/code], [code]hour[/code], [code]minute[/code], and [code]second[/code]. The returned Dictionary's values will be the same as the [method get_datetime_dict_from_system] if the Unix timestamp is the current time, with the exception of Daylight Savings Time as it cannot be determined from the epoch.