]> Cypherpunks repositories - gostls13.git/commitdiff
go spec: fix wrong comment
authorRobert Griesemer <gri@golang.org>
Wed, 28 Apr 2010 00:52:44 +0000 (17:52 -0700)
committerRobert Griesemer <gri@golang.org>
Wed, 28 Apr 2010 00:52:44 +0000 (17:52 -0700)
Fixes #743.

R=r, rsc
CC=golang-dev
https://golang.org/cl/944044

doc/go_spec.html

index 26fc7496905a16ef0fe9e8e08d1248243d717820..e53d3fb396ca135747e7463ff6583a6070a270fe 100644 (file)
@@ -1749,7 +1749,7 @@ func (m *Mutex) Unlock()  { /* Unlock implementation */ }
 // NewMutex has the same composition as Mutex but its method set is empty.
 type NewMutex Mutex
 
-// PrintableMutex's method set contains the methods
+// The method set of *PrintableMutex contains the methods
 // Lock and Unlock bound to its anonymous field Mutex.
 type PrintableMutex struct {
        Mutex