diff --git a/doc/effective_go.html b/doc/effective_go.html index 6d53eefbc3..61de824fcd 100644 --- a/doc/effective_go.html +++ b/doc/effective_go.html @@ -2790,7 +2790,7 @@ job := &Job{command, log.New(os.Stderr, "Job: ", log.Ldate)}

If we need to refer to an embedded field directly, the type name of the field, ignoring the package qualifier, serves as a field name, as it did -in the Read method of our ReaderWriter struct. +in the Read method of our ReadWriter struct. Here, if we needed to access the *log.Logger of a Job variable job, we would write job.Logger,