From: Oleksandr Redko Date: Thu, 22 Jun 2023 13:33:06 +0000 (+0300) Subject: internal/fuzz: fix typo in comment X-Git-Tag: go1.21rc3~2^2~72 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=3479e1e5439c3c4f5236239ad1ebaba2b945f755;p=gostls13.git 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 --- diff --git a/src/internal/fuzz/counters_unsupported.go b/src/internal/fuzz/counters_unsupported.go index 028065ce30..287bb4bd3c 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))