From feb9a146f9d5970937262e011d940c940a531322 Mon Sep 17 00:00:00 2001 From: Andrew Gerrand Date: Wed, 25 May 2011 11:39:40 +1000 Subject: [PATCH] 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 --- doc/effective_go.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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.

-- 2.50.0