From ca1048d84cb46d4ccbda0339b0f57a90a4986500 Mon Sep 17 00:00:00 2001 From: Jeff Williams Date: Mon, 14 Oct 2013 22:33:18 -0700 Subject: [PATCH] clarify option descriptions (#506) --- lib/jsdoc/opts/args.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/jsdoc/opts/args.js b/lib/jsdoc/opts/args.js index ddc3e620..994502fa 100644 --- a/lib/jsdoc/opts/args.js +++ b/lib/jsdoc/opts/args.js @@ -63,8 +63,8 @@ function parseQuery(str) { return result; } -argParser.addOption('t', 'template', true, 'The name of the template to use. Default: the "default" template'); -argParser.addOption('c', 'configure', true, 'The path to the configuration file. Default: jsdoc __dirname + /conf.json'); +argParser.addOption('t', 'template', true, 'The path to the template to use. Default: path/to/jsdoc/templates/default'); +argParser.addOption('c', 'configure', true, 'The path to the configuration file. Default: path/to/jsdoc/conf.json'); argParser.addOption('e', 'encoding', true, 'Assume this encoding when reading all source files. Default: utf8'); argParser.addOption('T', 'test', false, 'Run all tests and quit.'); argParser.addOption('d', 'destination', true, 'The path to the output folder. Use "console" to dump data to the console. Default: ./out/');