You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
type foo struct { }
// Doc comment
func (f *foo) Method()
type T struct {
foo
}
It would be nice if godoc showed Method as a method of T.
There is code in package net that could be simplified by
using embedded types, but it is not, because doing so would
lose method documentation.