aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrad Fitzpatrick <bradfitz@golang.org>2016-11-04 03:33:44 +0000
committerBrad Fitzpatrick <bradfitz@golang.org>2016-11-04 03:37:38 +0000
commitb5c0470c8d819e0f8a3accbb5a614d47b8ce0c7c (patch)
tree1f15d66ebab06bfef9a382179227addb68b05a3b
parent3440c7bc4c238e1d75d728536ca8f5efe883dbe6 (diff)
downloadgo-b5c0470c8d819e0f8a3accbb5a614d47b8ce0c7c.tar.xz
net/http: fix type name in comment
Change-Id: Ia03f993287d2929f35b4c92d00fe25c7243bd8b3 Reviewed-on: https://go-review.googlesource.com/32685 Reviewed-by: Josh Bleecher Snyder <josharian@gmail.com>
-rw-r--r--src/net/http/server.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/net/http/server.go b/src/net/http/server.go
index c527ea8eef..0959ac6f85 100644
--- a/src/net/http/server.go
+++ b/src/net/http/server.go
@@ -262,7 +262,7 @@ type conn struct {
curReq atomic.Value // of *response (which has a Request in it)
- curState atomic.Value // of ConnectionState
+ curState atomic.Value // of ConnState
// mu guards hijackedv
mu sync.Mutex