]> Cypherpunks repositories - gostls13.git/commitdiff
cmd/link: fix comment typo.
authorNigel Tao <nigeltao@golang.org>
Tue, 18 Feb 2014 02:04:59 +0000 (13:04 +1100)
committerNigel Tao <nigeltao@golang.org>
Tue, 18 Feb 2014 02:04:59 +0000 (13:04 +1100)
LGTM=dsymonds
R=dsymonds
CC=golang-codereviews
https://golang.org/cl/64100045

src/cmd/link/pclntab.go

index 76675c9ab2188d9034a45e4f5df908203548c4be..f3b6ceb40326bda79445d81629e7fc53de34112d 100644 (file)
@@ -379,7 +379,6 @@ func (b *SymBuffer) Addr(off int, sym goobj.SymID, symoff int64) int {
 // A PCIter implements iteration over PC-data tables.
 //
 //     var it PCIter
-//     it.Init(p, data)
 //     for it.Init(p, data); !it.Done; it.Next() {
 //             it.Value holds from it.PC up to (but not including) it.NextPC
 //     }