From 71f215c69a2879343e6de45a630cfce6c08a5e04 Mon Sep 17 00:00:00 2001 From: Robert Hencke Date: Tue, 29 Apr 2014 12:44:40 -0400 Subject: [PATCH] all: spelling tweaks, A-G LGTM=ruiu, bradfitz R=golang-codereviews, bradfitz, ruiu CC=golang-codereviews https://golang.org/cl/91840044 --- conn.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conn.go b/conn.go index 550bc7f..8f7d2c1 100644 --- a/conn.go +++ b/conn.go @@ -82,7 +82,7 @@ func (c *Conn) SetReadDeadline(t time.Time) error { return c.conn.SetReadDeadline(t) } -// SetWriteDeadline sets the write deadline on the underlying conneciton. +// SetWriteDeadline sets the write deadline on the underlying connection. // A zero value for t means Write will not time out. // After a Write has timed out, the TLS state is corrupt and all future writes will return the same error. func (c *Conn) SetWriteDeadline(t time.Time) error {