cmd/internal/cov: fix typo in readcovdata.go

hte -> the

Change-Id: Ie81062997289d622756881acdd11af66611cd778
GitHub-Last-Rev: 5ef07542b4
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>
This commit is contained in:
Ikko Eltociear Ashimine 2023-02-11 12:45:01 +00:00 committed by Gopher Robot
parent 712c009cf9
commit 0b922bfa9c
1 changed files with 1 additions and 1 deletions

View File

@ -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)