From bdbe0decc62dd63733ea37830aaa3c44ca16be43 Mon Sep 17 00:00:00 2001 From: Rob Pike Date: Wed, 25 May 2011 06:00:07 +1000 Subject: [PATCH] spec: add missing comma. A real humdinger. R=golang-dev, rsc CC=golang-dev https://golang.org/cl/4538089 --- 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 7ad90dd129..13af1d83a1 100644 --- a/doc/go_spec.html +++ b/doc/go_spec.html @@ -1696,7 +1696,7 @@ of an interface type or of elements of a composite type remains unchanged:

-// 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 */ }