From f5b3c14f3182e74a0b651b35d7994ba99b12ec4b Mon Sep 17 00:00:00 2001 From: Robert Griesemer Date: Tue, 27 Apr 2010 17:52:44 -0700 Subject: [PATCH] go spec: fix wrong comment Fixes #743. R=r, rsc CC=golang-dev https://golang.org/cl/944044 --- doc/go_spec.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.50.0