Skip to content

Commit

Permalink
Corrected 'length' spelling
Browse files Browse the repository at this point in the history
  • Loading branch information
bzoz committed May 31, 2016
1 parent ab1146a commit 4961a5d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions benchmark/child_process/child-process-read.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@
const common = require('../common.js');
const os = require('os');

var messagesLenght = [64, 256, 1024, 4096];
var messagesLength = [64, 256, 1024, 4096];
// Windows does not support that long arguments
if (os.platform() !== 'win32')
messagesLenght.push(32768);
messagesLength.push(32768);

const bench = common.createBenchmark(main, {
len: messagesLenght,
len: messagesLength,
dur: [5]
});

Expand Down

0 comments on commit 4961a5d

Please sign in to comment.