]> Cypherpunks repositories - gostls13.git/commitdiff
net: add missing period in conn.File documentation
authorMatt Layher <mdlayher@gmail.com>
Mon, 25 Mar 2019 18:05:31 +0000 (14:05 -0400)
committerMatt Layher <mdlayher@gmail.com>
Mon, 25 Mar 2019 18:16:51 +0000 (18:16 +0000)
Change-Id: Ie873d7ed595c91cee4c1aa6c22fa44b61b6190ff
Reviewed-on: https://go-review.googlesource.com/c/go/+/169138
Run-TryBot: Matt Layher <mdlayher@gmail.com>
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
src/net/net.go

index 77b8f69074e39c4f3f13e39a4027ed7d10253f77..3bdccc8468a04afe37ef08da7e61fecf615058b3 100644 (file)
@@ -282,7 +282,7 @@ func (c *conn) SetWriteBuffer(bytes int) error {
        return nil
 }
 
-// File returns a copy of the underlying os.File
+// File returns a copy of the underlying os.File.
 // It is the caller's responsibility to close f when finished.
 // Closing c does not affect f, and closing f does not affect c.
 //