From: Russ Cox Date: Wed, 17 Feb 2010 00:11:11 +0000 (-0800) Subject: runtime: fix bug in Caller documentation X-Git-Tag: weekly.2010-02-17~14 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=04d9c8853bf3a539b978fa081c939e4fda95ff46;p=gostls13.git runtime: fix bug in Caller documentation R=r CC=golang-dev https://golang.org/cl/207110 --- diff --git a/src/pkg/runtime/extern.go b/src/pkg/runtime/extern.go index 0834f78791..4ee3076c79 100644 --- a/src/pkg/runtime/extern.go +++ b/src/pkg/runtime/extern.go @@ -24,7 +24,7 @@ func Breakpoint() // Caller reports file and line number information about function invocations on // the calling goroutine's stack. The argument is the number of stack frames to -// ascend, with 1 identifying the the caller of Caller. The return values report the +// ascend, with 0 identifying the the caller of Caller. The return values report the // program counter, file name, and line number within the file of the corresponding // call. The boolean ok is false if it was not possible to recover the information. func Caller(n int) (pc uintptr, file string, line int, ok bool)