From: guoguangwu Date: Wed, 28 Feb 2024 09:30:08 +0000 (+0000) Subject: testing: fix typo in comment X-Git-Tag: go1.23rc1~1049 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=5d4c6088be94e0380d4b937f381eaa28ed7ba010;p=gostls13.git testing: fix typo in comment 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 Reviewed-by: Bryan Mills Auto-Submit: Bryan Mills Auto-Submit: Carlos Amedee LUCI-TryBot-Result: Go LUCI --- diff --git a/src/testing/fuzz.go b/src/testing/fuzz.go index d50ea793e0..baf1c7243c 100644 --- a/src/testing/fuzz.go +++ b/src/testing/fuzz.go @@ -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.