]> Cypherpunks repositories - gostls13.git/commitdiff
cmd/internal/cov: fix typo in readcovdata.go
authorIkko Eltociear Ashimine <eltociear@gmail.com>
Sat, 11 Feb 2023 12:45:01 +0000 (12:45 +0000)
committerGopher Robot <gobot@golang.org>
Mon, 13 Feb 2023 19:42:58 +0000 (19:42 +0000)
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>

src/cmd/internal/cov/readcovdata.go

index 7e90e9e808927148283bb6b717aaad12ffde23af..65076d72e8769f7ccd750f0607abeb02f58454d3 100644 (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)