aboutsummaryrefslogtreecommitdiff
path: root/src/testing
diff options
context:
space:
mode:
authorichxxx <chen@ichxxx.cn>2021-12-15 18:52:21 +0000
committerIan Lance Taylor <iant@golang.org>2021-12-15 19:56:22 +0000
commit567b177949d0819169c10ba6a07ff60554eb5285 (patch)
treee77ac5372d041c6ce486cebd4cbfed0c6f5c6568 /src/testing
parentb1c7703f266a2d72f80f3b55eff822ad7980ce31 (diff)
downloadgo-567b177949d0819169c10ba6a07ff60554eb5285.tar.xz
all: fix typo in comment
Remove duplicate 'the' Change-Id: I3ed81c8d9c488662387e45580a3bcd462448ba44 GitHub-Last-Rev: 86443993b9b58c6fce4e09e283604c32ccc44cec GitHub-Pull-Request: golang/go#50017 Reviewed-on: https://go-review.googlesource.com/c/go/+/372394 Reviewed-by: Robert Griesemer <gri@golang.org> Run-TryBot: Robert Griesemer <gri@golang.org> Reviewed-by: Ian Lance Taylor <iant@golang.org>
Diffstat (limited to 'src/testing')
-rw-r--r--src/testing/fuzz.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/testing/fuzz.go b/src/testing/fuzz.go
index 4a5def1ab4..17a8753ae6 100644
--- a/src/testing/fuzz.go
+++ b/src/testing/fuzz.go
@@ -63,7 +63,7 @@ type InternalFuzzTarget struct {
// for an example, and see the F.Fuzz and F.Add method documentation for
// details.
//
-// *F methods can only be called before (*F).Fuzz. Once the the test is
+// *F methods can only be called before (*F).Fuzz. Once the test is
// executing the fuzz target, only (*T) methods can be used. The only *F methods
// that are allowed in the (*F).Fuzz function are (*F).Failed and (*F).Name.
type F struct {