diff options
| author | Dmitry Alimov <it.alimovdmitry@gmail.com> | 2022-11-07 19:46:13 +0000 |
|---|---|---|
| committer | Than McIntosh <thanm@google.com> | 2022-11-07 21:17:20 +0000 |
| commit | 4538f30e2d35fdf44331d7066098c0daf2dd1a85 (patch) | |
| tree | 393a9170f294716185e61a049d07fd39ee44d764 /src/cmd | |
| parent | 42105eb8a5b59e715573f5299218e12be2dbb050 (diff) | |
| download | go-4538f30e2d35fdf44331d7066098c0daf2dd1a85.tar.xz | |
cmd/covdata: fix wrong struct name in the comment
Invalid struct name in the comment in merge.go
dstate -> mstate
dstate already exists and is in cmd/covdata/dump.go
Change-Id: Id8b2412d2f81ae8afa1e9df3d09c218d84818ffb
GitHub-Last-Rev: 898eda4a204be0fcd5bdf2e51766af24c9304919
GitHub-Pull-Request: golang/go#56631
Reviewed-on: https://go-review.googlesource.com/c/go/+/448475
Run-TryBot: Than McIntosh <thanm@google.com>
Reviewed-by: Than McIntosh <thanm@google.com>
Reviewed-by: Michael Knyszek <mknyszek@google.com>
TryBot-Result: Gopher Robot <gobot@golang.org>
Diffstat (limited to 'src/cmd')
| -rw-r--r-- | src/cmd/covdata/merge.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cmd/covdata/merge.go b/src/cmd/covdata/merge.go index ac75a1a81c..225861dab5 100644 --- a/src/cmd/covdata/merge.go +++ b/src/cmd/covdata/merge.go @@ -29,7 +29,7 @@ func makeMergeOp() covOperation { return m } -// dstate encapsulates state and provides methods for implementing the +// mstate encapsulates state and provides methods for implementing the // merge operation. This type implements the CovDataVisitor interface, // and is designed to be used in concert with the CovDataReader // utility, which abstracts away most of the grubby details of reading |
