summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVinu Rajashekhar <vinutheraj@gmail.com>2010-07-24 19:10:21 -0700
committerVinu Rajashekhar <vinutheraj@gmail.com>2010-07-24 19:10:21 -0700
commita59af702763edf3d51b75b855e467526770e9897 (patch)
tree044439daf7a8a9fd6f4fa48239ed64b44b062e2e
parentdc0c97481110a7008b620868dd647b93cf47e4e3 (diff)
downloadgo-a59af702763edf3d51b75b855e467526770e9897.tar.gz
runtime/extern.go: clear a small error in a comment.
R=iant, rsc CC=golang-dev http://codereview.appspot.com/1741058 Committer: Russ Cox <rsc@golang.org>
-rw-r--r--src/pkg/runtime/extern.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pkg/runtime/extern.go b/src/pkg/runtime/extern.go
index c0cab22e9..f73c20f45 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.