http: fix typo in validation.

This commit is contained in:
Christopher Jeffrey 2016-09-14 15:54:02 -07:00
parent a34f680f9a
commit 19f61773f7
No known key found for this signature in database
GPG Key ID: 8962AB9DE6666BBD

View File

@ -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) {