From 8a22eea14f5ffd19aa9b0c826727665770bfd4ae Mon Sep 17 00:00:00 2001 From: Russ Cox Date: Tue, 16 Feb 2010 16:11:11 -0800 Subject: runtime: fix bug in Caller documentation R=r CC=golang-dev http://codereview.appspot.com/207110 --- src/pkg/runtime/extern.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/pkg') diff --git a/src/pkg/runtime/extern.go b/src/pkg/runtime/extern.go index 0834f7879..4ee3076c7 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) -- cgit v1.2.3