Commit 19d262ff authored by Brad Fitzpatrick's avatar Brad Fitzpatrick

net: remove named parameters in Listener.Accept doc signature

They added no value.

Change-Id: I9e690379d2dfd983266de0ea5231f2b57c8b1517
Reviewed-on: https://go-review.googlesource.com/14568Reviewed-by: default avatarIan Lance Taylor <iant@golang.org>
parent af261a5c
......@@ -345,7 +345,7 @@ var listenerBacklog = maxListenerBacklog()
// Multiple goroutines may invoke methods on a Listener simultaneously.
type Listener interface {
// Accept waits for and returns the next connection to the listener.
Accept() (c Conn, err error)
Accept() (Conn, error)
// Close closes the listener.
// Any blocked Accept operations will be unblocked and return errors.
......
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