From 1e67453d93c317d5a30780cc54a53c9d19373fdf Mon Sep 17 00:00:00 2001 From: David Symonds Date: Fri, 17 Jan 2014 09:06:39 -0800 Subject: [PATCH] doc: replace "private" with "unexported" in Effective Go. R=r CC=golang-codereviews https://golang.org/cl/53720043 --- doc/effective_go.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.

-- 2.48.1