From: Vinu Rajashekhar Date: Sun, 25 Jul 2010 02:10:21 +0000 (-0700) Subject: runtime/extern.go: clear a small error in a comment. X-Git-Tag: weekly.2010-07-29~45 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=e57657683fde31ddb936f54a57468599b294e82f;p=gostls13.git runtime/extern.go: clear a small error in a comment. R=iant, rsc CC=golang-dev https://golang.org/cl/1741058 --- diff --git a/src/pkg/runtime/extern.go b/src/pkg/runtime/extern.go index c0cab22e95..f73c20f45e 100644 --- a/src/pkg/runtime/extern.go +++ b/src/pkg/runtime/extern.go @@ -111,7 +111,7 @@ func Semrelease(s *uint32) // is not called again, the next time the garbage collector sees // that x is unreachable, it will free x. // -// SetFinalizer(x, nil) clears any finalizer associated with f. +// SetFinalizer(x, nil) clears any finalizer associated with x. // // The argument x must be a pointer to an object allocated by // calling new or by taking the address of a composite literal.