From 81348ed39d055e445d943eedfe4b4db3a1fd73d8 Mon Sep 17 00:00:00 2001 From: guoguangwu Date: Sun, 14 Apr 2024 18:02:24 +0800 Subject: [PATCH] cmd/cover: fix typo in comment Signed-off-by: guoguangwu --- src/cmd/cover/cfg_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cmd/cover/cfg_test.go b/src/cmd/cover/cfg_test.go index 701de615d0..edae129d3d 100644 --- a/src/cmd/cover/cfg_test.go +++ b/src/cmd/cover/cfg_test.go @@ -169,7 +169,7 @@ func TestCoverOnPackageWithNoTestFiles(t *testing.T) { // For packages with no test files, the new "go test -cover" // strategy is to run cmd/cover on the package in a special // "EmitMetaFile" mode. When running in this mode, cmd/cover walks - // the package doing instrumention, but when finished, instead of + // the package doing instrumentation, but when finished, instead of // writing out instrumented source files, it directly emits a // meta-data file for the package in question, essentially // simulating the effect that you would get if you added a dummy