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