Unify help messages shown when kmod is called without any arguments
to use the same grammar and capitalisation.
Signed-off-by: Tobias Stoeckmann <tobias@stoeckmann.org>
Link: https://github.com/kmod-project/kmod/pull/265
Signed-off-by: Lucas De Marchi <lucas.de.marchi@gmail.com>
static const struct kmod_cmd kmod_cmd_help = {
.name = "help",
.cmd = kmod_help,
- .help = "Show help message",
+ .help = "show help message",
};
static int handle_kmod_commands(int argc, char *argv[])
const struct kmod_cmd kmod_cmd_static_nodes = {
.name = "static-nodes",
.cmd = do_static_nodes,
- .help = "outputs the static-node information installed with the currently running kernel",
+ .help = "output the static-node information installed with the currently running kernel",
};