]> Cypherpunks repositories - gostls13.git/commitdiff
runtime: fix typo in comment
authorRobert Griesemer <gri@golang.org>
Wed, 4 Jan 2012 22:06:54 +0000 (14:06 -0800)
committerRobert Griesemer <gri@golang.org>
Wed, 4 Jan 2012 22:06:54 +0000 (14:06 -0800)
R=golang-dev, dsymonds
CC=golang-dev
https://golang.org/cl/5511047

src/pkg/runtime/extern.go

index 7c986daee632951b1cffceca70f7e9a9f10860d8..ea36355e66cb54124b141fca6a058123a4c1d361 100644 (file)
@@ -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)