1
0
mirror of https://github.com/golang/go synced 2024-11-23 12:30:11 -07:00

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>
This commit is contained in:
Jonathan Boulle 2015-12-23 23:56:47 +01:00 committed by Brad Fitzpatrick
parent 54641818c9
commit 5b5e19ea65

View 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