Skip to content

Commit 86226a6

Browse files
committed
Add missing parameter hint to 'select' command
The 'select' command requires exactly one parameter, but the parameter hint was previously missing, potentially causing confusion. Referenced the existing parameter hint from the 'log' command to improve clarity and consistency in usage documentation. Change-Id: I16d81a3041ea495dcc0a4272ba1a1c4388f4d017
1 parent 29d90ea commit 86226a6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

console.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -427,7 +427,7 @@ void init_cmd()
427427
"Display or set options. See 'Options' section for details",
428428
"[name val]");
429429
ADD_COMMAND(quit, "Exit program", "");
430-
ADD_COMMAND(source, "Read commands from source file", "");
430+
ADD_COMMAND(source, "Read commands from source file", "file");
431431
ADD_COMMAND(log, "Copy output to file", "file");
432432
ADD_COMMAND(time, "Time command execution", "cmd arg ...");
433433
ADD_COMMAND(web, "Read commands from builtin web server", "[port]");

0 commit comments

Comments
 (0)