From 19f61773f79764f678b1a09f3c59e32ad2f06fcc Mon Sep 17 00:00:00 2001 From: Christopher Jeffrey Date: Wed, 14 Sep 2016 15:54:02 -0700 Subject: [PATCH] http: fix typo in validation. --- lib/http/server.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/http/server.js b/lib/http/server.js index c3229c37..510ca5b3 100644 --- a/lib/http/server.js +++ b/lib/http/server.js @@ -214,7 +214,7 @@ HTTPServer.prototype._init = function _init() { if (params.start != null) { options.start = Number(params.start); - assert(utils.isUInt32(options.height), 'Start must be a number.'); + assert(utils.isUInt32(options.start), 'Start must be a number.'); } if (params.end != null) {