summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRĂ©mi Verschelde <remi@verschelde.fr>2023-02-21 12:54:47 +0100
committerGitHub <noreply@github.com>2023-02-21 12:54:47 +0100
commit7e79aead99a53ee7cdf383add9a6a2aea4f15beb (patch)
treea410cdb04604b344329beed3f44433f2b514be9b
parent662d0b188dc2bd6ca50ea0c3b3b9accb8255acfc (diff)
parent5ebc0541d2933163a2353c761d007d76c510573f (diff)
Merge pull request #73672 from aaronfranke/time-doc
Fix incorrect Time documentation in get_datetime_dict_from_unix_time
-rw-r--r--doc/classes/Time.xml2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/classes/Time.xml b/doc/classes/Time.xml
index 1abe017a4d..ca2a6bec36 100644
--- a/doc/classes/Time.xml
+++ b/doc/classes/Time.xml
@@ -64,7 +64,7 @@
<return type="Dictionary" />
<param index="0" name="unix_time_val" type="int" />
<description>
- 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.
</description>
</method>