From 5d4c6088be94e0380d4b937f381eaa28ed7ba010 Mon Sep 17 00:00:00 2001 From: guoguangwu Date: Wed, 28 Feb 2024 09:30:08 +0000 Subject: [PATCH] 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 --- src/testing/fuzz.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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. -- 2.48.1