From 3416b2ba4cd83765cdf62de2fbfe57b4c758a0b8 Mon Sep 17 00:00:00 2001 From: ritschwumm Date: Thu, 25 Mar 2021 15:19:24 +0100 Subject: [PATCH] fix typos in comments --- tasks/exec.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tasks/exec.js b/tasks/exec.js index 3d3ff48..f2453c5 100644 --- a/tasks/exec.js +++ b/tasks/exec.js @@ -78,9 +78,9 @@ module.exports = function(grunt) { // NOTE: must be < require('buffer').kMaxLength or a RangeError will be triggered var maxBuffer = data.maxBuffer || execOptions.maxBuffer || (200*1024); - // timeout manually supportted (spawn vs exec) + // timeout manually supported (spawn vs exec) execOptions.timeout = execOptions.timeout || data.timeout || 0; - // kill signal manually supportted (spawn vs exec) + // kill signal manually supported (spawn vs exec) execOptions.killSignal = execOptions.killSignal || data.killSignal || 'SIGTERM'; // support shell scripts like 'npm.cmd' by default (spawn vs exec)