Skip to content
This repository has been archived by the owner on Aug 23, 2024. It is now read-only.

Commit

Permalink
fixing windows est abbr
Browse files Browse the repository at this point in the history
  • Loading branch information
wcharczuk authored Feb 12, 2017
1 parent 1584e50 commit 0079911
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion date_windows.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ func (d date) Eastern() *time.Location {
_easternLock.Lock()
defer _easternLock.Unlock()
if _eastern == nil {
_eastern, _ = time.LoadLocation("Eastern Standard Time")
_eastern, _ = time.LoadLocation("EST")
}
}
return _eastern
Expand Down

0 comments on commit 0079911

Please sign in to comment.