@@ -298,7 +298,7 @@ added: v0.7.0
298298* ` head ` {Buffer}
299299
300300Emitted each time a server responds to a request with a ` CONNECT ` method. If this
301- event isn't being listened for, clients receiving a ` CONNECT ` method will have
301+ event is not being listened for, clients receiving a ` CONNECT ` method will have
302302their connections closed.
303303
304304A client and server pair that shows you how to listen for the ` 'connect' ` event:
@@ -396,7 +396,7 @@ added: v0.1.94
396396* ` head ` {Buffer}
397397
398398Emitted each time a server responds to a request with an upgrade. If this
399- event isn't being listened for, clients receiving an upgrade header will have
399+ event is not being listened for, clients receiving an upgrade header will have
400400their connections closed.
401401
402402A client server pair that show you how to listen for the ` 'upgrade' ` event.
@@ -489,7 +489,7 @@ call `request.end()` or write the first chunk of request data. It then tries
489489hard to pack the request headers and data into a single TCP packet.
490490
491491That's usually what you want (it saves a TCP round-trip) but not when the first
492- data isn't sent until possibly much later. ` request.flushHeaders() ` lets you bypass
492+ data is not sent until possibly much later. ` request.flushHeaders() ` lets you bypass
493493the optimization and kickstart the request.
494494
495495### request.setNoDelay([ noDelay] )
@@ -565,7 +565,7 @@ added: v0.3.0
565565* ` response ` {http.ServerResponse}
566566
567567Emitted each time a request with an HTTP ` Expect: 100-continue ` is received.
568- If this event isn't listened for, the server will automatically respond
568+ If this event is not listened for, the server will automatically respond
569569with a ` 100 Continue ` as appropriate.
570570
571571Handling this event involves calling [ ` response.writeContinue() ` ] [ ] if the client
@@ -585,7 +585,7 @@ added: v5.5.0
585585* ` response ` {http.ServerResponse}
586586
587587Emitted each time a request with an HTTP ` Expect ` header is received, where the
588- value is not ` 100-continue ` . If this event isn't listened for, the server will
588+ value is not ` 100-continue ` . If this event is not listened for, the server will
589589automatically respond with a ` 417 Expectation Failed ` as appropriate.
590590
591591Note that when this event is emitted and handled, the [ ` 'request' ` ] [ ] event will
@@ -642,8 +642,8 @@ added: v0.7.0
642642* ` socket ` {net.Socket} Network socket between the server and client
643643* ` head ` {Buffer} The first packet of the tunneling stream (may be empty)
644644
645- Emitted each time a client requests an HTTP ` CONNECT ` method. If this event isn't
646- listened for, then clients requesting a ` CONNECT ` method will have their
645+ Emitted each time a client requests an HTTP ` CONNECT ` method. If this event is
646+ not listened for, then clients requesting a ` CONNECT ` method will have their
647647connections closed.
648648
649649After this event is emitted, the request's socket will not have a ` 'data' `
@@ -684,7 +684,7 @@ added: v0.1.94
684684* ` socket ` {net.Socket} Network socket between the server and client
685685* ` head ` {Buffer} The first packet of the upgraded stream (may be empty)
686686
687- Emitted each time a client requests an HTTP upgrade. If this event isn't
687+ Emitted each time a client requests an HTTP upgrade. If this event is not
688688listened for, then clients requesting an upgrade will have their connections
689689closed.
690690
0 commit comments