]> Cypherpunks repositories - gostls13.git/commitdiff
runtime: fix typo in comment
authorMaxim Pimenov <mpimenov@google.com>
Mon, 16 Jan 2012 14:42:18 +0000 (18:42 +0400)
committerDmitriy Vyukov <dvyukov@google.com>
Mon, 16 Jan 2012 14:42:18 +0000 (18:42 +0400)
R=golang-dev, dvyukov
CC=golang-dev
https://golang.org/cl/5540059

src/pkg/runtime/extern.go

index 25c7470aab16900284e62b84417e0502f92961a4..88598cb7d4b116f4c6c95b7309639973e579388b 100644 (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