From: David Symonds Date: Fri, 17 Jan 2014 17:06:39 +0000 (-0800) Subject: doc: replace "private" with "unexported" in Effective Go. X-Git-Tag: go1.3beta1~941 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=1e67453d93c317d5a30780cc54a53c9d19373fdf;p=gostls13.git doc: replace "private" with "unexported" in Effective Go. R=r CC=golang-codereviews https://golang.org/cl/53720043 --- diff --git a/doc/effective_go.html b/doc/effective_go.html index cc9176160d..094ab3d921 100644 --- a/doc/effective_go.html +++ b/doc/effective_go.html @@ -288,7 +288,7 @@ var (

-Even for private names, grouping can also indicate relationships between items, +Grouping can also indicate relationships between items, such as the fact that a set of variables is protected by a mutex.