1
0
mirror of https://github.com/golang/go synced 2024-11-22 04:34:39 -07:00

runtime/extern.go: clear a small error in a comment.

R=iant, rsc
CC=golang-dev
https://golang.org/cl/1741058
This commit is contained in:
Vinu Rajashekhar 2010-07-24 19:10:21 -07:00 committed by Russ Cox
parent e356f1d88f
commit e57657683f

View File

@ -111,7 +111,7 @@ func Semrelease(s *uint32)
// is not called again, the next time the garbage collector sees // is not called again, the next time the garbage collector sees
// that x is unreachable, it will free x. // 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 // The argument x must be a pointer to an object allocated by
// calling new or by taking the address of a composite literal. // calling new or by taking the address of a composite literal.