aboutsummaryrefslogtreecommitdiff
path: root/src/os/exec
diff options
context:
space:
mode:
authorcui fliter <imcusg@gmail.com>2022-09-28 02:34:31 +0000
committerRobert Griesemer <gri@google.com>2022-09-28 15:13:20 +0000
commit190973eb603614eef33e0a22f420217fc13a2e0a (patch)
tree92c16e8029088ba1bb715c079d412a23a6598ef3 /src/os/exec
parent6e1b769377245f706c9c1471fa95276762e8edbf (diff)
downloadgo-190973eb603614eef33e0a22f420217fc13a2e0a.tar.xz
all: fix some typos
Change-Id: I8b28aebbb9494b2c877139a4584a5a42253e3bea GitHub-Last-Rev: e3703fd3a50b811785df75751472aa3ab098b3d1 GitHub-Pull-Request: golang/go#55902 Reviewed-on: https://go-review.googlesource.com/c/go/+/435617 Reviewed-by: Robert Griesemer <gri@google.com> Reviewed-by: Cherry Mui <cherryyz@google.com>
Diffstat (limited to 'src/os/exec')
-rw-r--r--src/os/exec/lp_linux_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/os/exec/lp_linux_test.go b/src/os/exec/lp_linux_test.go
index 5d77427d89..7ab19602e9 100644
--- a/src/os/exec/lp_linux_test.go
+++ b/src/os/exec/lp_linux_test.go
@@ -24,7 +24,7 @@ func TestFindExecutableVsNoexec(t *testing.T) {
err := syscall.Mount("tmpfs", tmp, "tmpfs", 0, "")
if err != nil {
// Usually this means lack of CAP_SYS_ADMIN, but there might be
- // other reasons, expecially in restricted test environments.
+ // other reasons, especially in restricted test environments.
t.Skipf("requires ability to mount tmpfs (%v)", err)
}
t.Cleanup(func() {