Skip to content

Commit 55fd845

Browse files
Dennis40816yy214123
authored andcommitted
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 09d310d commit 55fd845

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
@@ -429,7 +429,7 @@ void init_cmd()
429429
"Display or set options. See 'Options' section for details",
430430
"[name val]");
431431
ADD_COMMAND(quit, "Exit program", "");
432-
ADD_COMMAND(source, "Read commands from source file", "");
432+
ADD_COMMAND(source, "Read commands from source file", "file");
433433
ADD_COMMAND(log, "Copy output to file", "file");
434434
ADD_COMMAND(time, "Time command execution", "cmd arg ...");
435435
ADD_COMMAND(web, "Read commands from builtin web server", "[port]");

0 commit comments

Comments
 (0)