25
25
var errClosed = errors .New ("i/o operation on closed connection" )
26
26
27
27
// ServerConn is an artifact of Go's early HTTP implementation.
28
- // Is is low-level, old, and unused by Go's current HTTP stack.
28
+ // It is low-level, old, and unused by Go's current HTTP stack.
29
29
// We should have deleted it before Go 1.
30
30
//
31
31
// Deprecated: Use the Server in package net/http instead.
@@ -42,7 +42,7 @@ type ServerConn struct {
42
42
}
43
43
44
44
// NewServerConn is an artifact of Go's early HTTP implementation.
45
- // Is is low-level, old, and unused by Go's current HTTP stack.
45
+ // It is low-level, old, and unused by Go's current HTTP stack.
46
46
// We should have deleted it before Go 1.
47
47
//
48
48
// Deprecated: Use the Server in package net/http instead.
@@ -218,7 +218,7 @@ func (sc *ServerConn) Write(req *http.Request, resp *http.Response) error {
218
218
}
219
219
220
220
// ClientConn is an artifact of Go's early HTTP implementation.
221
- // Is is low-level, old, and unused by Go's current HTTP stack.
221
+ // It is low-level, old, and unused by Go's current HTTP stack.
222
222
// We should have deleted it before Go 1.
223
223
//
224
224
// Deprecated: Use Client or Transport in package net/http instead.
@@ -236,7 +236,7 @@ type ClientConn struct {
236
236
}
237
237
238
238
// NewClientConn is an artifact of Go's early HTTP implementation.
239
- // Is is low-level, old, and unused by Go's current HTTP stack.
239
+ // It is low-level, old, and unused by Go's current HTTP stack.
240
240
// We should have deleted it before Go 1.
241
241
//
242
242
// Deprecated: Use the Client or Transport in package net/http instead.
@@ -253,7 +253,7 @@ func NewClientConn(c net.Conn, r *bufio.Reader) *ClientConn {
253
253
}
254
254
255
255
// NewProxyClientConn is an artifact of Go's early HTTP implementation.
256
- // Is is low-level, old, and unused by Go's current HTTP stack.
256
+ // It is low-level, old, and unused by Go's current HTTP stack.
257
257
// We should have deleted it before Go 1.
258
258
//
259
259
// Deprecated: Use the Client or Transport in package net/http instead.
0 commit comments