From: Brad Fitzpatrick Date: Tue, 20 Sep 2016 21:52:11 +0000 (+0000) Subject: doc: add some missing HTML tags in the FAQ X-Git-Tag: go1.8beta1~1216 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=e7191479ec57e89aa1967e75a87f9da4d1d8b734;p=gostls13.git doc: add some missing HTML tags in the FAQ Fixes #17170 Change-Id: I939f087df133710495fdf6f09040051cb9b176d7 Reviewed-on: https://go-review.googlesource.com/29442 Reviewed-by: Ian Lance Taylor --- diff --git a/doc/go_faq.html b/doc/go_faq.html index 921c0b8a7c..450a521681 100644 --- a/doc/go_faq.html +++ b/doc/go_faq.html @@ -889,6 +889,7 @@ Why does Go not have covariant result types?

Covariant result types would mean that an interface like +

 type Copyable interface {
@@ -896,7 +897,9 @@ type Copyable interface {
 }
 
+

would be satisfied by the method +

 func (v Value) Copy() Value