mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
sys/shell/cmds: improve wording in shell help text
My spell checker says "receival" should be "reception". Also, the terms allow list and deny list are preferred over whitelist and blacklist. But since scripts may depend on the shell command name, only the help description is changed, not the cmd names.
This commit is contained in:
parent
c06335b71b
commit
fe7f75f78c
@ -62,7 +62,7 @@ static int _blacklist(int argc, char **argv)
|
||||
}
|
||||
|
||||
SHELL_COMMAND(blacklist,
|
||||
"blacklists an address for receival ('blacklist [add|del|help]')",
|
||||
"manage IPv6 addresses in reception deny list ('blacklist [add|del|help]')",
|
||||
_blacklist);
|
||||
|
||||
/** @} */
|
||||
|
@ -60,6 +60,8 @@ static int _whitelist(int argc, char **argv)
|
||||
return 0;
|
||||
}
|
||||
|
||||
SHELL_COMMAND(whitelist, "whitelists an address for receival ('whitelist [add|del|help]')", _whitelist);
|
||||
SHELL_COMMAND(whitelist,
|
||||
"manage IPv6 addresses in reception allow list ('whitelist [add|del|help]')",
|
||||
_whitelist);
|
||||
|
||||
/** @} */
|
||||
|
Loading…
Reference in New Issue
Block a user