From 3479e1e5439c3c4f5236239ad1ebaba2b945f755 Mon Sep 17 00:00:00 2001 From: Oleksandr Redko Date: Thu, 22 Jun 2023 16:33:06 +0300 Subject: [PATCH] internal/fuzz: fix typo in comment Change-Id: I04f0aa2730cd7d60027a36a3b81289e4972d4a9c Reviewed-on: https://go-review.googlesource.com/c/go/+/505115 Reviewed-by: Roland Shoemaker Auto-Submit: Roland Shoemaker Reviewed-by: Dmitri Shuralyov Run-TryBot: Roland Shoemaker TryBot-Result: Gopher Robot --- src/internal/fuzz/counters_unsupported.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/internal/fuzz/counters_unsupported.go b/src/internal/fuzz/counters_unsupported.go index 028065ce30f..287bb4bd3ce 100644 --- a/src/internal/fuzz/counters_unsupported.go +++ b/src/internal/fuzz/counters_unsupported.go @@ -6,7 +6,7 @@ // the instrumentation is OS specific, but only amd64 and arm64 are // supported in the runtime. See src/runtime/libfuzzer*. // -// If you update this constraint, also update internal/platform.FuzzInstrumeted. +// If you update this constraint, also update internal/platform.FuzzInstrumented. // //go:build !((darwin || linux || windows || freebsd) && (amd64 || arm64))