src/runtime/symtab.go | 4 ++-- diff --git a/src/runtime/symtab.go b/src/runtime/symtab.go index ce2ec6dd1db0cd54776e8d78c64b657b5cb226dd..1e86662adc2c8789368e51fef83d13918e955d88 100644 --- a/src/runtime/symtab.go +++ b/src/runtime/symtab.go @@ -563,8 +563,8 @@ // FuncForPC returns a *Func describing the function that contains the // given program counter address, or else nil. // // If pc represents multiple functions because of inlining, it returns -// the a *Func describing the innermost function, but with an entry -// of the outermost function. +// the *Func describing the innermost function, but with an entry of +// the outermost function. func FuncForPC(pc uintptr) *Func { f := findfunc(pc) if !f.valid() {