From 0aaf2c2d103101c66f60d3c02abd972a29b70b33 Mon Sep 17 00:00:00 2001 From: Maxim Pimenov Date: Mon, 16 Jan 2012 18:42:18 +0400 Subject: [PATCH] runtime: fix typo in comment R=golang-dev, dvyukov CC=golang-dev https://golang.org/cl/5540059 --- src/pkg/runtime/extern.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pkg/runtime/extern.go b/src/pkg/runtime/extern.go index 25c7470aab1..88598cb7d4b 100644 --- a/src/pkg/runtime/extern.go +++ b/src/pkg/runtime/extern.go @@ -27,7 +27,7 @@ func Caller(skip int) (pc uintptr, file string, line int, ok bool) // Callers fills the slice pc with the program counters of function invocations // on the calling goroutine's stack. The argument skip is the number of stack frames -// to skip before recording in pc, with 0 starting at the caller of Caller. +// to skip before recording in pc, with 0 starting at the caller of Callers. // It returns the number of entries written to pc. func Callers(skip int, pc []uintptr) int