diff options
| author | Brad Fitzpatrick <bradfitz@golang.org> | 2016-11-04 03:33:44 +0000 |
|---|---|---|
| committer | Brad Fitzpatrick <bradfitz@golang.org> | 2016-11-04 03:37:38 +0000 |
| commit | b5c0470c8d819e0f8a3accbb5a614d47b8ce0c7c (patch) | |
| tree | 1f15d66ebab06bfef9a382179227addb68b05a3b | |
| parent | 3440c7bc4c238e1d75d728536ca8f5efe883dbe6 (diff) | |
| download | go-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.go | 2 |
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 |
