aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIkko Eltociear Ashimine <eltociear@gmail.com>2023-02-11 12:45:01 +0000
committerGopher Robot <gobot@golang.org>2023-02-13 19:42:58 +0000
commit0b922bfa9c43b0b1b957f3f6d62bb366bb2c9870 (patch)
treefec8f3d42bb560107c7a3c04e067dd5a60881d8d
parent712c009cf90ad9365f70356fff7bc41323b6fdf0 (diff)
downloadgo-0b922bfa9c43b0b1b957f3f6d62bb366bb2c9870.tar.xz
cmd/internal/cov: fix typo in readcovdata.go
hte -> the Change-Id: Ie81062997289d622756881acdd11af66611cd778 GitHub-Last-Rev: 5ef07542b47f243d5a66ef166c74db0348fd2c80 GitHub-Pull-Request: golang/go#58473 Reviewed-on: https://go-review.googlesource.com/c/go/+/467518 Reviewed-by: Ian Lance Taylor <iant@google.com> Reviewed-by: Than McIntosh <thanm@google.com> Run-TryBot: Ian Lance Taylor <iant@google.com> TryBot-Bypass: Ian Lance Taylor <iant@golang.org> Auto-Submit: Ian Lance Taylor <iant@google.com>
-rw-r--r--src/cmd/internal/cov/readcovdata.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cmd/internal/cov/readcovdata.go b/src/cmd/internal/cov/readcovdata.go
index 7e90e9e808..65076d72e8 100644
--- a/src/cmd/internal/cov/readcovdata.go
+++ b/src/cmd/internal/cov/readcovdata.go
@@ -108,7 +108,7 @@ type CovDataVisitor interface {
EndCounters()
// Invoked for each package in the meta-data file for the pod,
- // first the 'begin' method when processinf of hte package starts,
+ // first the 'begin' method when processinf of the package starts,
// then the 'end' method when we're done
BeginPackage(pd *decodemeta.CoverageMetaDataDecoder, pkgIdx uint32)
EndPackage(pd *decodemeta.CoverageMetaDataDecoder, pkgIdx uint32)