]> Cypherpunks repositories - gostls13.git/commitdiff
net/http: fix typo in docstring
authorJonathan Boulle <jonathanboulle@gmail.com>
Wed, 23 Dec 2015 22:56:47 +0000 (23:56 +0100)
committerBrad Fitzpatrick <bradfitz@golang.org>
Thu, 24 Dec 2015 01:28:11 +0000 (01:28 +0000)
s/activitiy/activity

Change-Id: Ib2bbc929b38b1993000da57daed2d795f4a93997
Reviewed-on: https://go-review.googlesource.com/18131
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
src/net/http/server.go

index 15a1cc4144f05778aa4ccca69b93b848a8ceab47..f9f4806f1e088c553133513c04be51e070c77a60 100644 (file)
@@ -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