aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Griesemer <gri@golang.org>2010-04-27 17:52:44 -0700
committerRobert Griesemer <gri@golang.org>2010-04-27 17:52:44 -0700
commitf5b3c14f3182e74a0b651b35d7994ba99b12ec4b (patch)
tree87a0a159c970af08c18f748977c89c9eb26f54dd
parenta82349614b2342ef012f3213dd91b4a421eb0171 (diff)
downloadgo-f5b3c14f3182e74a0b651b35d7994ba99b12ec4b.tar.gz
go-f5b3c14f3182e74a0b651b35d7994ba99b12ec4b.zip
go spec: fix wrong comment
Fixes #743. R=r, rsc CC=golang-dev https://golang.org/cl/944044
-rw-r--r--doc/go_spec.html2
1 files changed, 1 insertions, 1 deletions
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