From: Robert Griesemer Date: Wed, 4 Jan 2012 22:06:54 +0000 (-0800) Subject: runtime: fix typo in comment X-Git-Tag: weekly.2012-01-15~152 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=3f1eb94ef2380e1f100835c3bccb7394d0c6138d;p=gostls13.git runtime: fix typo in comment R=golang-dev, dsymonds CC=golang-dev https://golang.org/cl/5511047 --- diff --git a/src/pkg/runtime/extern.go b/src/pkg/runtime/extern.go index 7c986daee6..ea36355e66 100644 --- a/src/pkg/runtime/extern.go +++ b/src/pkg/runtime/extern.go @@ -19,8 +19,8 @@ func Gosched() func Goexit() // Caller reports file and line number information about function invocations on -// the calling goroutine's stack. The argument skip is the number of stack frames to -// ascend, with 0 identifying the the caller of Caller. The return values report the +// the calling goroutine's stack. The argument skip is the number of stack frames +// to ascend, with 0 identifying 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(skip int) (pc uintptr, file string, line int, ok bool)