aboutsummaryrefslogtreecommitdiff
path: root/src/internal/testenv/exec.go
diff options
context:
space:
mode:
authorDan Kortschak <dan@kortschak.io>2023-07-12 22:26:57 +0930
committerGopher Robot <gobot@golang.org>2023-07-12 23:26:34 +0000
commit49d42128fd8594c172162961ead19ac95e247d24 (patch)
treef5ee1457fc4b131ca15e11829498347ac7d5e89c /src/internal/testenv/exec.go
parent6244b1946bc2101b01955468f1be502dbadd6807 (diff)
downloadgo-49d42128fd8594c172162961ead19ac95e247d24.tar.xz
all: fix typos and remove repeated words
Change-Id: I5f06a4ef1d827eb0fe32a8d98444142108b0d573 Reviewed-on: https://go-review.googlesource.com/c/go/+/508996 Run-TryBot: Ian Lance Taylor <iant@google.com> Auto-Submit: Keith Randall <khr@golang.org> TryBot-Result: Gopher Robot <gobot@golang.org> Run-TryBot: Keith Randall <khr@golang.org> Reviewed-by: Keith Randall <khr@golang.org> Reviewed-by: Ian Lance Taylor <iant@google.com> Auto-Submit: Ian Lance Taylor <iant@google.com> Reviewed-by: Keith Randall <khr@google.com>
Diffstat (limited to 'src/internal/testenv/exec.go')
-rw-r--r--src/internal/testenv/exec.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/internal/testenv/exec.go b/src/internal/testenv/exec.go
index c67ff53a72..50d3b0dc73 100644
--- a/src/internal/testenv/exec.go
+++ b/src/internal/testenv/exec.go
@@ -163,8 +163,8 @@ func CommandContext(t testing.TB, ctx context.Context, name string, args ...stri
// grace periods to clean up: one for the delay between the first
// termination signal being sent (via the Cancel callback when the Context
// expires) and the process being forcibly terminated (via the WaitDelay
- // field), and a second one for the delay becween the process being
- // terminated and and the test logging its output for debugging.
+ // field), and a second one for the delay between the process being
+ // terminated and the test logging its output for debugging.
//
// (We want to ensure that the test process itself has enough time to
// log the output before it is also terminated.)