diff options
author | Richard Braun <rbraun@sceen.net> | 2017-06-24 17:51:37 +0200 |
---|---|---|
committer | Richard Braun <rbraun@sceen.net> | 2017-06-24 17:51:37 +0200 |
commit | d59e9a82fd76a1c585cdb55bb5ccb5228ce83646 (patch) | |
tree | ec8cdcc2d292ff366a404df3b7f99ad84f537960 /kern/shell.c | |
parent | 13de6a8b39d2de95d37ae4a070481385dec4bf9c (diff) |
Make shell command descriptions consistent
Diffstat (limited to 'kern/shell.c')
-rw-r--r-- | kern/shell.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kern/shell.c b/kern/shell.c index c526b311..81fe0132 100644 --- a/kern/shell.c +++ b/kern/shell.c @@ -692,7 +692,7 @@ shell_cmd_history(int argc, char *argv[]) static struct shell_cmd shell_default_cmds[] = { SHELL_CMD_INITIALIZER("help", shell_cmd_help, "help [command]", - "obtain help about shell commands"), + "display help about shell commands"), SHELL_CMD_INITIALIZER("history", shell_cmd_history, "history", "display history list"), |