]> Cypherpunks repositories - gostls13.git/commitdiff
testing: fix typo in comment
authorguoguangwu <guoguangwug@gmail.com>
Wed, 28 Feb 2024 09:30:08 +0000 (09:30 +0000)
committerGopher Robot <gobot@golang.org>
Wed, 28 Feb 2024 20:32:54 +0000 (20:32 +0000)
Change-Id: I5aa6093b0199df1ef5b0ad0fcfa651a4b990bfd5
GitHub-Last-Rev: b053d993eb497500ee63024ef12784f63fac6c0e
GitHub-Pull-Request: golang/go#65986
Reviewed-on: https://go-review.googlesource.com/c/go/+/567655
Reviewed-by: Carlos Amedee <carlos@golang.org>
Reviewed-by: Bryan Mills <bcmills@google.com>
Auto-Submit: Bryan Mills <bcmills@google.com>
Auto-Submit: Carlos Amedee <carlos@golang.org>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>

src/testing/fuzz.go

index d50ea793e0e1f941d3fa954ea0d1e8b01eaf1133..baf1c7243c13f717e4ed39609664e1be5362b875 100644 (file)
@@ -199,7 +199,7 @@ var supportedTypes = map[reflect.Type]bool{
 // the (*F).Fuzz function are (*F).Failed and (*F).Name.
 //
 // This function should be fast and deterministic, and its behavior should not
-// depend on shared state. No mutatable input arguments, or pointers to them,
+// depend on shared state. No mutable input arguments, or pointers to them,
 // should be retained between executions of the fuzz function, as the memory
 // backing them may be mutated during a subsequent invocation. ff must not
 // modify the underlying data of the arguments provided by the fuzzing engine.