1
0
mirror of https://github.com/golang/go synced 2024-11-23 04:00:03 -07:00

doc: update Effective Go with 1.14 language changes

Fixes #37560

Change-Id: Iccb8e53254c45d203c1b42ea9b4d8509b93dd7a9
GitHub-Last-Rev: 5972b67e5d
GitHub-Pull-Request: golang/go#37563
Reviewed-on: https://go-review.googlesource.com/c/go/+/221429
Reviewed-by: Rob Pike <r@golang.org>
This commit is contained in:
Felix Cornelius 2020-02-28 20:15:02 +00:00 committed by Rob Pike
parent 5a61de3fe1
commit 964fac3ee7

View File

@ -2695,8 +2695,7 @@ type ReadWriter interface {
<p>
This says just what it looks like: A <code>ReadWriter</code> can do
what a <code>Reader</code> does <em>and</em> what a <code>Writer</code>
does; it is a union of the embedded interfaces (which must be disjoint
sets of methods).
does; it is a union of the embedded interfaces.
Only interfaces can be embedded within interfaces.
</p>
<p>