mirror of
https://github.com/golang/go
synced 2024-11-15 11:30:36 -07:00
[release-branch.go1] net: fix typo in Listener.File() documentation
««« backport 0739e30d5df7 net: fix typo in Listener.File() documentation R=golang-dev, dave, rsc CC=golang-dev, remy https://golang.org/cl/6097044 »»»
This commit is contained in:
parent
cb6f9ce4c7
commit
bff1a8a3b1
@ -357,5 +357,5 @@ func (l *TCPListener) SetDeadline(t time.Time) error {
|
||||
|
||||
// File returns a copy of the underlying os.File, set to blocking mode.
|
||||
// It is the caller's responsibility to close f when finished.
|
||||
// Closing c does not affect f, and closing f does not affect c.
|
||||
// Closing l does not affect f, and closing f does not affect l.
|
||||
func (l *TCPListener) File() (f *os.File, err error) { return l.fd.dup() }
|
||||
|
@ -404,7 +404,7 @@ func (l *UnixListener) SetDeadline(t time.Time) (err error) {
|
||||
|
||||
// File returns a copy of the underlying os.File, set to blocking mode.
|
||||
// It is the caller's responsibility to close f when finished.
|
||||
// Closing c does not affect f, and closing f does not affect c.
|
||||
// Closing l does not affect f, and closing f does not affect l.
|
||||
func (l *UnixListener) File() (f *os.File, err error) { return l.fd.dup() }
|
||||
|
||||
// ListenUnixgram listens for incoming Unix datagram packets addressed to the
|
||||
|
Loading…
Reference in New Issue
Block a user