From: Robert Griesemer Date: Wed, 28 Apr 2010 00:52:44 +0000 (-0700) Subject: go spec: fix wrong comment X-Git-Tag: weekly.2010-04-27~7 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=f5b3c14f3182e74a0b651b35d7994ba99b12ec4b;p=gostls13.git go spec: fix wrong comment Fixes #743. R=r, rsc CC=golang-dev https://golang.org/cl/944044 --- diff --git a/doc/go_spec.html b/doc/go_spec.html index 26fc749690..e53d3fb396 100644 --- a/doc/go_spec.html +++ b/doc/go_spec.html @@ -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