1
0
mirror of https://github.com/golang/go synced 2024-11-24 12:10:03 -07:00

runtime: fix typo in comment

R=golang-dev, dvyukov
CC=golang-dev
https://golang.org/cl/5540059
This commit is contained in:
Maxim Pimenov 2012-01-16 18:42:18 +04:00 committed by Dmitriy Vyukov
parent 92686dda7c
commit 0aaf2c2d10

View File

@ -27,7 +27,7 @@ func Caller(skip int) (pc uintptr, file string, line int, ok bool)
// Callers fills the slice pc with the program counters of function invocations
// on the calling goroutine's stack. The argument skip is the number of stack frames
// to skip before recording in pc, with 0 starting at the caller of Caller.
// to skip before recording in pc, with 0 starting at the caller of Callers.
// It returns the number of entries written to pc.
func Callers(skip int, pc []uintptr) int