Skip to content

Commit

Permalink
tools: Unify help messages
Browse files Browse the repository at this point in the history
Unify help messages shown if kmod is called without any arguments
to use the same grammar and capitalisation.

Signed-off-by: Tobias Stoeckmann <[email protected]>
  • Loading branch information
stoeckmann committed Dec 2, 2024
1 parent 1359eeb commit 6bf7934
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tools/kmod.c
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ static int kmod_help(int argc, char *argv[])
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[])
Expand Down
2 changes: 1 addition & 1 deletion tools/static-nodes.c
Original file line number Diff line number Diff line change
Expand Up @@ -274,5 +274,5 @@ static int do_static_nodes(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",
};

0 comments on commit 6bf7934

Please sign in to comment.