Skip to content

Commit c3927a4

Browse files
committed
runtime: fix comments in tracetype.go
They seem to have been copy and pasted from tracestack.go without being updated. Change-Id: I6a6a69645a778fe8e6e8a2f4a80429f20e90162e Reviewed-on: https://go-review.googlesource.com/c/go/+/674215 LUCI-TryBot-Result: Go LUCI <[email protected]> Reviewed-by: David Chase <[email protected]> Reviewed-by: Michael Knyszek <[email protected]>
1 parent 77f911e commit c3927a4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/runtime/tracetype.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// Use of this source code is governed by a BSD-style
33
// license that can be found in the LICENSE file.
44

5-
// Trace stack table and acquisition.
5+
// Trace type table.
66

77
package runtime
88

@@ -13,7 +13,7 @@ import (
1313
"unsafe"
1414
)
1515

16-
// traceTypeTable maps stack traces (arrays of PC's) to unique uint32 ids.
16+
// traceTypeTable maps types to unique uint32 ids.
1717
// It is lock-free for reading.
1818
type traceTypeTable struct {
1919
tab traceMap

0 commit comments

Comments
 (0)