diff options
| author | Colin Davidson <6327402+colrdavidson@users.noreply.github.com> | 2024-10-21 21:48:58 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-10-21 21:48:58 -0700 |
| commit | d393d3292fd4eb1843dcd4835fddf216c804db68 (patch) | |
| tree | b756faea981f83a39e711d92ca51ccabce6fd7e3 | |
| parent | 5bf8852b2ed14cb825a36ad98a311392e4ff609c (diff) | |
Update core/time/timezone/tzdate.odin
Co-authored-by: Feoramund <161657516+Feoramund@users.noreply.github.com>
| -rw-r--r-- | core/time/timezone/tzdate.odin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/time/timezone/tzdate.odin b/core/time/timezone/tzdate.odin index 3ac71b141..7f479dd93 100644 --- a/core/time/timezone/tzdate.odin +++ b/core/time/timezone/tzdate.odin @@ -253,7 +253,7 @@ shortname :: proc(dt: datetime.DateTime) -> (name: string, success: bool) #optio Gets the timezone abbreviation/shortname for a given date. (ex: "PDT") -WARNING: This is unsafe because it doesn't check if you datetime is valid, or your region contains a valid record +WARNING: This is unsafe because it doesn't check if your datetime is valid or if your region contains a valid record. Inputs: - dt: The input datetime |