From 7ff742e666fcc83c1cc64408c3ec4959cac4765f Mon Sep 17 00:00:00 2001 From: ehmicky Date: Wed, 15 May 2019 10:00:00 +0200 Subject: [PATCH] Fix comments --- src/stream/options.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/stream/options.js b/src/stream/options.js index 9831e21..fa76130 100644 --- a/src/stream/options.js +++ b/src/stream/options.js @@ -2,10 +2,10 @@ export const getDefaultOpts = function({ opts: { result = 'replace' } = {} }) { return { // This is too verbose if done on each iteration, even on CI verbose: false, - // We use `through2-concurrent` because `through2` processes files serially - // The default is 16 which is too low + // We use `through2-concurrent` because `through2` processes files serially. + // The default is 16 which is too low. maxConcurrency: 100, - // What to do with the result. Either 'save' or 'replace' + // What to do with the result. Either 'save' or 'replace'. result: 'replace', // With `result: 'replace'` which stream to use: `stdout`, `stderr` or `all` from: 'stdout',