Commit 14ad4114 authored by Mikio Hara's avatar Mikio Hara

undo CL 6248054 / 0f418a63cdf9

breaks public API document style

««« original CL description
net: fix comment on FileListener

R=golang-dev, bradfitz
CC=golang-dev
https://golang.org/cl/6248054
»»»

R=golang-dev, rsc
CC=golang-dev
https://golang.org/cl/6242066
parent 28e9e158
......@@ -88,10 +88,10 @@ func FileConn(f *os.File) (c Conn, err error) {
}
// FileListener returns a copy of the network listener corresponding
// to the open file f. It is the caller's responsibility to close ln
// when finished. Closing ln does not affect f, and closing f does not
// affect ln.
func FileListener(f *os.File) (ln Listener, err error) {
// to the open file f. It is the caller's responsibility to close l
// when finished. Closing c does not affect l, and closing l does not
// affect c.
func FileListener(f *os.File) (l Listener, err error) {
fd, err := newFileFD(f)
if err != nil {
return nil, err
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment