aboutsummaryrefslogtreecommitdiff
path: root/src/os/file.go
diff options
context:
space:
mode:
authorJakob Borg <jakob@nym.se>2025-06-22 17:16:36 +0000
committerGopher Robot <gobot@golang.org>2025-07-10 17:30:06 -0700
commit7a38975a48ac735e62b389957bfc898437d628dc (patch)
tree86d592d2ff2f0599a6c4a30d92bb87f16dcc7d0f /src/os/file.go
parentaa5de9ebb55bbd5e0a38304f8f8e603b2ec03238 (diff)
downloadgo-7a38975a48ac735e62b389957bfc898437d628dc.tar.xz
os: trivial comment fix
"Geese" here looks like an autocorrect-o of "oses", I think writing it out makes more sense. Change-Id: Iba89a6c0b94657e2e93937cc153f07aea1d04e04 GitHub-Last-Rev: 4f3a780f327d6c807e9b154d781ee69a10d391e4 GitHub-Pull-Request: golang/go#74332 Reviewed-on: https://go-review.googlesource.com/c/go/+/682776 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Keith Randall <khr@golang.org> Auto-Submit: Keith Randall <khr@golang.org> Reviewed-by: Keith Randall <khr@google.com> Reviewed-by: Dmitri Shuralyov <dmitshur@google.com>
Diffstat (limited to 'src/os/file.go')
-rw-r--r--src/os/file.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/os/file.go b/src/os/file.go
index 7a7f2c06be..9603ac61e6 100644
--- a/src/os/file.go
+++ b/src/os/file.go
@@ -616,7 +616,7 @@ func UserHomeDir() (string, error) {
if v := Getenv(env); v != "" {
return v, nil
}
- // On some geese the home directory is not always defined.
+ // On some operating systems the home directory is not always defined.
switch runtime.GOOS {
case "android":
return "/sdcard", nil