From 393ea2dfa8128a1f6910a19de2ddb9cb6778f34f Mon Sep 17 00:00:00 2001 From: Andrew Gerrand Date: Thu, 17 Mar 2011 16:37:34 +1100 Subject: [PATCH] doc: mention godoc in "implements" FAQ R=r CC=golang-dev https://golang.org/cl/4248066 --- doc/go_faq.html | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/doc/go_faq.html b/doc/go_faq.html index 312d0e2c5a9..5f92b0528a6 100644 --- a/doc/go_faq.html +++ b/doc/go_faq.html @@ -558,7 +558,8 @@ type Fooer interface {

A type must then implement the ImplementsFooer method to be a -Fooer, clearly documenting the fact. +Fooer, clearly documenting the fact and announcing it in +godoc's output.