From cdee70fe4c33f0400a8263b2d56b8d65e38f63cd Mon Sep 17 00:00:00 2001 From: Jeff Williams Date: Wed, 3 Oct 2012 08:18:26 -0700 Subject: [PATCH] correct docs --- nodejs_modules/common/args.js | 1 + 1 file changed, 1 insertion(+) diff --git a/nodejs_modules/common/args.js b/nodejs_modules/common/args.js index affdc79e..b93dde43 100644 --- a/nodejs_modules/common/args.js +++ b/nodejs_modules/common/args.js @@ -39,6 +39,7 @@ * @param {string} longName The equivalent long name of the option, entered like: --test. * @param {boolean} hasValue Does this option require a value? Like: -t templatename * @param {string} helpText + * @param {boolean} [canHaveMultiple=false] * @param {function} [coercer] A function to coerce the given value to a specific type. * @example * myParser.addOption('t', 'template', true, 'The path to the template.');