From da5cf2d336ce691754a51e852f0a69870615d11b Mon Sep 17 00:00:00 2001 From: Russ Cox Date: Tue, 1 Nov 2011 22:58:09 -0400 Subject: [PATCH] all: rename os.Error to error in various non-code contexts R=adg CC=golang-dev https://golang.org/cl/5328062 --- conn.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conn.go b/conn.go index c052337..6312c34 100644 --- a/conn.go +++ b/conn.go @@ -828,7 +828,7 @@ func (c *Conn) OCSPResponse() []byte { } // VerifyHostname checks that the peer certificate chain is valid for -// connecting to host. If so, it returns nil; if not, it returns an os.Error +// connecting to host. If so, it returns nil; if not, it returns an error // describing the problem. func (c *Conn) VerifyHostname(host string) error { c.handshakeMutex.Lock()