summaryrefslogtreecommitdiff
path: root/benchmark/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'benchmark/README.md')
-rw-r--r--benchmark/README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/benchmark/README.md b/benchmark/README.md
index 5401d92a51..a90f0f548f 100644
--- a/benchmark/README.md
+++ b/benchmark/README.md
@@ -326,7 +326,7 @@ const bench = common.createBenchmark(main, {
function main(conf) {
const http = require('http');
const len = conf.kb * 1024;
- const chunk = Buffer.alloc(len, 'x');
+ const chunk = Buffer.alloc(len, 'x');
const server = http.createServer(function(req, res) {
res.end(chunk);
});