summaryrefslogtreecommitdiff
path: root/benchmark/README.md
diff options
context:
space:
mode:
authorSam Roberts <vieuxtech@gmail.com>2016-11-18 09:40:45 -0800
committerSam Roberts <vieuxtech@gmail.com>2016-11-21 09:04:29 -0800
commit3cbb553df8fefbed7fd09b4b75f1d6f7b611d3b5 (patch)
treeb21a98975932a099ad3e70d066873cf2536ed017 /benchmark/README.md
parent13c4f44e974534951564c110b0e718fb5c642464 (diff)
downloadandroid-node-v8-3cbb553df8fefbed7fd09b4b75f1d6f7b611d3b5.tar.gz
android-node-v8-3cbb553df8fefbed7fd09b4b75f1d6f7b611d3b5.tar.bz2
android-node-v8-3cbb553df8fefbed7fd09b4b75f1d6f7b611d3b5.zip
tools: disallow trailing whitespace for markdown
markdown had a dispensation because 2 or more trailing spaces triggers a new paragraph. There are no examples of that usage in Node, all trailing whitespace found were mistakes, and the dispensation is now removed. See: https://github.com/nodejs/node/pull/9620 PR-URL: https://github.com/nodejs/node/pull/9676 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Roman Reiss <me@silverwind.io> Reviewed-By: Michaƫl Zasso <targos@protonmail.com> Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com>
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);
});