Skip to content

Commit 9da21f9

Browse files
committed
chore(cmds): Improve command descriptions
1 parent e43b283 commit 9da21f9

File tree

12 files changed

+14
-14
lines changed

12 files changed

+14
-14
lines changed

cmds/core/install-vc.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"use strict";
1919

2020
exports.command = ['install-vc [specs..]'];
21-
exports.desc = 'Install packages directly from the version control';
21+
exports.desc = 'Fetch and install packages directly via version control';
2222
exports.builder = yargs => yargs
2323
.positional(
2424
'[specs..]', {

cmds/core/install.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"use strict";
1919

2020
exports.command = ['install [names..]'];
21-
exports.desc = 'Install packages';
21+
exports.desc = 'Install packages from archives or install from the workspace';
2222
exports.builder = yargs => yargs
2323
.positional(
2424
'[names..]', {

cmds/core/keywords.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"use strict";
1919

2020
exports.command = ['keywords'];
21-
exports.desc = 'List available keywords that can be used in the header section';
21+
exports.desc = 'Display the available keywords for use in the header section';
2222

2323
exports.handler = async (argv) => {
2424
await UTIL.e_call(argv, 'core/keywords');

cmds/core/package-directory.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"use strict";
1919

2020
exports.command = ['package-directory'];
21-
exports.desc = 'Print path to package directory';
21+
exports.desc = 'Print the path to package directory';
2222

2323
exports.handler = async (argv) => {
2424
await UTIL.e_call(argv, 'core/package-directory');

cmds/core/refresh.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"use strict";
1919

2020
exports.command = ['refresh'];
21-
exports.desc = 'Download package archives';
21+
exports.desc = 'Download descriptions of all configured package archives';
2222

2323
exports.handler = async (argv) => {
2424
await UTIL.e_call(argv, 'core/refresh');

cmds/core/reinstall.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"use strict";
1919

2020
exports.command = ['reinstall [names..]'];
21-
exports.desc = 'Reinstall packages';
21+
exports.desc = 'Reinstall packages from archives';
2222
exports.builder = yargs => yargs
2323
.positional(
2424
'[names..]', {

cmds/core/repl.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"use strict";
1919

2020
exports.command = ['repl', 'ielm'];
21-
exports.desc = UTIL.hide_cmd('Start the Elisp REPL');
21+
exports.desc = UTIL.hide_cmd('Start an Elisp REPL');
2222

2323
exports.handler = async (argv) => {
2424
await UTIL.e_call(argv, 'core/repl');

cmds/core/search.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"use strict";
1919

2020
exports.command = ['search [queries..]'];
21-
exports.desc = 'Search packages';
21+
exports.desc = 'Search packages from archives';
2222
exports.builder = yargs => yargs
2323
.positional(
2424
'[queries..]', {

cmds/core/source.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"use strict";
1919

2020
exports.command = ['source <type>'];
21-
exports.desc = UTIL.hide_cmd('Add/Remove source from DSL');
21+
exports.desc = UTIL.hide_cmd('Manage sources');
2222
exports.builder = function (yargs) {
2323
yargs.usage(`${exports.desc}
2424
@@ -30,8 +30,8 @@ Usage: eask source <type> [options..]`)
3030
if (UTIL.cmd_count() == 1) {
3131
yargs.positional(
3232
'<type>', {
33-
description: 'type of the control',
34-
});
33+
description: 'type of the control',
34+
});
3535
}
3636
}
3737

cmds/core/status.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"use strict";
1919

2020
exports.command = ['status'];
21-
exports.desc = 'Display the state of the workspace';
21+
exports.desc = 'Show the workspace status';
2222

2323
exports.handler = async (argv) => {
2424
await UTIL.e_call(argv, 'core/status');

0 commit comments

Comments
 (0)