From a6f437a3688479646970bf7f4d4e2f08963261aa Mon Sep 17 00:00:00 2001 From: Sebastiaan Deckers Date: Thu, 28 Apr 2016 13:10:37 +0200 Subject: [PATCH] Typo: finshed --- lib/http.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/http.js b/lib/http.js index d71513d5..be2e742c 100644 --- a/lib/http.js +++ b/lib/http.js @@ -755,7 +755,7 @@ OutgoingResponse.prototype.write = function write() { }; OutgoingResponse.prototype.end = function end() { - this.finshed = true; + this.finished = true; this._implicitHeaders(); return OutgoingMessage.prototype.end.apply(this, arguments); };