Commit 0aaf2c2d authored by Maxim Pimenov's avatar Maxim Pimenov Committed by Dmitriy Vyukov

runtime: fix typo in comment

R=golang-dev, dvyukov
CC=golang-dev
https://golang.org/cl/5540059
parent 92686dda
......@@ -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
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment