diff --git a/doc/go_faq.html b/doc/go_faq.html index 6a955f6f3f..37a31ae289 100644 --- a/doc/go_faq.html +++ b/doc/go_faq.html @@ -1151,6 +1151,12 @@ struct. If the interface value holds a pointer, copying the interface value makes a copy of the pointer, but again not the data it points to.

+

+Note that this discussion is about the semantics of the operations. +Actual implementations may apply optimizations to avoid copying +as long as the optimizations do not change the semantics. +

+

When should I use a pointer to an interface?