cmd/cover: fix spelling mistake

Change-Id: Iac7c4f22dc55c970940af33e0f0470694da5c4a6
Reviewed-on: https://go-review.googlesource.com/34654
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
This commit is contained in:
Kevin Burke 2016-12-19 20:27:12 -08:00 committed by Brad Fitzpatrick
parent a1c835f57b
commit 4d02833c2e

View file

@ -399,7 +399,7 @@ func annotate(name string) {
// Retain compiler directives that are not processed in ast.Visitor.
// Some compiler directives like "go:linkname" and "go:cgo_"
// can be not attached to anything in the tree and hence will not be printed by printer.
// So, we have to explicitely print them here.
// So, we have to explicitly print them here.
for cd, handled := range file.directives {
if !handled {
fmt.Fprintln(fd, cd.Text)