Skip to content
This repository has been archived by the owner on Apr 22, 2023. It is now read-only.

Commit

Permalink
Typo in http_server_lag.js script
Browse files Browse the repository at this point in the history
Thanks, @mscdex
  • Loading branch information
isaacs committed Mar 7, 2012
1 parent fb53986 commit 150053b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion benchmark/http_server_lag.js
Expand Up @@ -4,7 +4,7 @@ var defaultLag = parseInt(process.argv[2], 10) || 100;

http.createServer(function(req, res) {
res.writeHead(200, { 'content-type': 'text/plain',
'content-lengt': '2' });
'content-length': '2' });

var lag = parseInt(req.url.split("/").pop(), 10) || defaultLag;
setTimeout(function() {
Expand Down

0 comments on commit 150053b

Please sign in to comment.