]> Cypherpunks repositories - gostls13.git/commitdiff
spec: add missing comma.
authorRob Pike <r@golang.org>
Tue, 24 May 2011 20:00:07 +0000 (06:00 +1000)
committerRob Pike <r@golang.org>
Tue, 24 May 2011 20:00:07 +0000 (06:00 +1000)
A real humdinger.

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

doc/go_spec.html

index 7ad90dd1296aec21e7342d35d2a806477e2c1c5c..13af1d83a13dff480ead91afbe2019d11fb0ac60 100644 (file)
@@ -1696,7 +1696,7 @@ of an interface type or of elements of a composite type remains unchanged:
 </p>
 
 <pre>
-// A Mutex is a data type with two methods Lock and Unlock.
+// A Mutex is a data type with two methods, Lock and Unlock.
 type Mutex struct         { /* Mutex fields */ }
 func (m *Mutex) Lock()    { /* Lock implementation */ }
 func (m *Mutex) Unlock()  { /* Unlock implementation */ }