1
0
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:
Marian Buschsieweke 2022-08-05 19:34:27 +02:00
parent c06335b71b
commit fe7f75f78c
No known key found for this signature in database
GPG Key ID: CB8E3238CE715A94
2 changed files with 4 additions and 2 deletions

View File

@ -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);
/** @} */

View File

@ -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);
/** @} */