From: Rob Pike
Date: Tue, 24 May 2011 20:00:07 +0000 (+1000)
Subject: spec: add missing comma.
X-Git-Tag: weekly.2011-06-02~128
X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=bdbe0decc62dd63733ea37830aaa3c44ca16be43;p=gostls13.git
spec: add missing comma.
A real humdinger.
R=golang-dev, rsc
CC=golang-dev
https://golang.org/cl/4538089
---
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 */ }