From 9391adb159b5eda4f8fc3794e9efd006637da1cf Mon Sep 17 00:00:00 2001 From: Reece Dunham Date: Mon, 30 Mar 2020 15:53:18 +0000 Subject: [PATCH] fix(dev): typo in comment Signed-off-by: Reece Dunham --- dev-packages/ext-scripts/theia-ext.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-packages/ext-scripts/theia-ext.js b/dev-packages/ext-scripts/theia-ext.js index 7837af4c0cd1a..ccf9d48372c1b 100755 --- a/dev-packages/ext-scripts/theia-ext.js +++ b/dev-packages/ext-scripts/theia-ext.js @@ -25,7 +25,7 @@ const extScriptsPck = require(path.resolve(__dirname, 'package.json')); * Lookup the requested ext:script to run, returns the full command line to execute. */ function getExtScript() { - // process.argv are always like [0:node, 1:script, 2:...args] + // process.argv is always like [0:node, 1:script, 2:...args] const args = process.argv.slice(2); if (!args[0]) { throw new Error('Please specify the script that runs with theiaext command.');