git: 52cc1708f5af - main - nvmecontrol(8): Fix two typos in command messages
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sat, 26 Apr 2025 10:18:56 UTC
The branch main has been updated by gbe: URL: https://cgit.FreeBSD.org/src/commit/?id=52cc1708f5afdb3208d7797b87b3059a780d613b commit 52cc1708f5afdb3208d7797b87b3059a780d613b Author: Gordon Bergling <gbe@FreeBSD.org> AuthorDate: 2025-04-26 10:18:31 +0000 Commit: Gordon Bergling <gbe@FreeBSD.org> CommitDate: 2025-04-26 10:18:31 +0000 nvmecontrol(8): Fix two typos in command messages Fix two typos in command messages: - s/identiy/identity/ MFC after: 1 week --- sbin/nvmecontrol/identify.c | 2 +- sbin/nvmecontrol/ns.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/sbin/nvmecontrol/identify.c b/sbin/nvmecontrol/identify.c index ea81f23d3aab..98a3141bf9ad 100644 --- a/sbin/nvmecontrol/identify.c +++ b/sbin/nvmecontrol/identify.c @@ -267,7 +267,7 @@ identify(const struct cmd *f, int argc, char *argv[]) static const struct opts identify_opts[] = { #define OPT(l, s, t, opt, addr, desc) { l, s, t, &opt.addr, desc } OPT("hex", 'x', arg_none, opt, hex, - "Print identiy information in hex"), + "Print identity information in hex"), OPT("verbose", 'v', arg_none, opt, verbose, "More verbosity: print entire identify table"), OPT("nsid", 'n', arg_uint32, opt, nsid, diff --git a/sbin/nvmecontrol/ns.c b/sbin/nvmecontrol/ns.c index 5e2a50df4ba1..c538338eb6c3 100644 --- a/sbin/nvmecontrol/ns.c +++ b/sbin/nvmecontrol/ns.c @@ -333,7 +333,7 @@ static struct identify_options { static const struct opts identify_opts[] = { OPT("hex", 'x', arg_none, identify_opt, hex, - "Print identiy information in hex"), + "Print identity information in hex"), OPT("verbose", 'v', arg_none, identify_opt, verbose, "More verbosity: print entire identify table"), OPT("nsid", 'n', arg_uint32, identify_opt, nsid,