diff --git a/doc/effective_go.html b/doc/effective_go.html index fc65d155d20..29d656f82c7 100644 --- a/doc/effective_go.html +++ b/doc/effective_go.html @@ -1771,8 +1771,8 @@ it also satisfies all three interfaces:

There's one important way in which embedding differs from subclassing. When we embed a type, -the methods of that type become methods of the out type -Read method of a bufio.ReadWriter is invoked, it has the exactly the same effect as the forwarding method written out above; the receiver is the reader field of the ReadWriter, not the