diff options
author | Simon Roberts <lyricnz@gmail.com> | 2021-10-08 11:46:50 +1100 |
---|---|---|
committer | Simon Roberts <lyricnz@gmail.com> | 2021-10-08 11:46:50 +1100 |
commit | 1713392f08038baf3c7a878950642c14c9784c84 (patch) | |
tree | 2b45c1623b25579c4754e46e6d65d11e80842258 | |
parent | aece7676086df010ae3494f49b769c8ff5a67325 (diff) |
Update comment
-rw-r--r-- | pkg/humanize/humanize.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/humanize/humanize.go b/pkg/humanize/humanize.go index ad486a7..975a1d1 100644 --- a/pkg/humanize/humanize.go +++ b/pkg/humanize/humanize.go @@ -53,7 +53,7 @@ func splitLocale(locale string) (string, string) { } // GetLocale returns the current locale as defined in IETF BCP 47 (e.g. "en-US"). -// The envvar is provided this is checked first, before the platform-specific defaults. +// The envvar provided is checked first (eg LC_TIME), before the platform-specific defaults. func getLocale(envvar string) string { userLocale := "en-US" // default language-REGION // First try looking up envar directly |