aboutsummaryrefslogtreecommitdiff
path: root/lib/_http_server.js
diff options
context:
space:
mode:
Diffstat (limited to 'lib/_http_server.js')
-rw-r--r--lib/_http_server.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/_http_server.js b/lib/_http_server.js
index 22929ddc95..7e33ef1734 100644
--- a/lib/_http_server.js
+++ b/lib/_http_server.js
@@ -263,7 +263,7 @@ function writeHead(statusCode, reason, obj) {
this._hasBody = false;
}
- // don't keep alive connections where the client expects 100 Continue
+ // Don't keep alive connections where the client expects 100 Continue
// but we sent a final status; they may put extra bytes on the wire.
if (this._expect_continue && !this._sent100) {
this.shouldKeepAlive = false;