From: Andrew Gerrand Date: Wed, 25 May 2011 01:39:40 +0000 (+1000) Subject: doc: mention go/printer instead of container/vector in effective go X-Git-Tag: weekly.2011-06-02~121 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=feb9a146f9d5970937262e011d940c940a531322;p=gostls13.git doc: mention go/printer instead of container/vector in effective go Fixes #1876. R=golang-dev, bradfitz, gri, r CC=golang-dev https://golang.org/cl/4538093 --- diff --git a/doc/effective_go.html b/doc/effective_go.html index f713b3edb8..972772d337 100644 --- a/doc/effective_go.html +++ b/doc/effective_go.html @@ -297,9 +297,9 @@ determines just which package is being used.

Another convention is that the package name is the base name of its source directory; -the package in src/pkg/container/vector -is imported as "container/vector" but has name vector, -not container_vector and not containerVector. +the package in src/pkg/encoding/base64 +is imported as "encoding/base64" but has name base64, +not encoding_base64 and not encodingBase64.