-
Notifications
You must be signed in to change notification settings - Fork 18.4k
Closed
Labels
Description
What steps will reproduce the problem? 1. godoc io net --type interface 2. 3. What is the expected output? What do you see instead? godoc shows interface type like following: type io.Closer interface { Close() error } Closer is the interface that wraps the basic Close method. type io.Reader interface { Read(p []byte) (n int, err error) } Reader is the interface that wraps the basic Read method. type io.Writer interface { Write(p []byte) (n int, err error) } Writer is the interface that wraps the basic Write method. type net.Addr interface { : } Addr represents a network end point address. Please use labels and text to provide additional information. I think it would be nice, be helpful for writing Go program if godoc could show cross-cutting catalogue for of interface type.