aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2010-02-16 16:11:11 -0800
committerRuss Cox <rsc@golang.org>2010-02-16 16:11:11 -0800
commit04d9c8853bf3a539b978fa081c939e4fda95ff46 (patch)
treedfaeba358d376f90071ef1791af12e99dd26cd6f
parentdb9a9662a1dd8cf2e2774ffea4d1cc8eaf24d8cb (diff)
downloadgo-04d9c8853bf3a539b978fa081c939e4fda95ff46.tar.xz
runtime: fix bug in Caller documentation
R=r CC=golang-dev https://golang.org/cl/207110
-rw-r--r--src/pkg/runtime/extern.go2
1 files changed, 1 insertions, 1 deletions
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)