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.