aboutsummaryrefslogtreecommitdiff
path: root/src/net/http/server.go
diff options
context:
space:
mode:
authorJonathan Boulle <jonathanboulle@gmail.com>2015-12-23 23:56:47 +0100
committerBrad Fitzpatrick <bradfitz@golang.org>2015-12-24 01:28:11 +0000
commit5b5e19ea654ff0ed774587f5c62b100722772ade (patch)
treee56e4766490cc071eb173c8f4538de93d40c4b00 /src/net/http/server.go
parent54641818c97077f59ae968752c3a66576cffbe56 (diff)
downloadgo-5b5e19ea654ff0ed774587f5c62b100722772ade.tar.xz
net/http: fix typo in docstring
s/activitiy/activity Change-Id: Ib2bbc929b38b1993000da57daed2d795f4a93997 Reviewed-on: https://go-review.googlesource.com/18131 Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
Diffstat (limited to 'src/net/http/server.go')
-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 15a1cc4144..f9f4806f1e 100644
--- a/src/net/http/server.go
+++ b/src/net/http/server.go
@@ -478,7 +478,7 @@ type readResult struct {
// connReader is the io.Reader wrapper used by *conn. It combines a
// selectively-activated io.LimitedReader (to bound request header
// read sizes) with support for selectively keeping an io.Reader.Read
-// call blocked in a background goroutine to wait for activitiy and
+// call blocked in a background goroutine to wait for activity and
// trigger a CloseNotifier channel.
type connReader struct {
r io.Reader