]> www.infradead.org Git - users/sagi/nvme-cli.git/commitdiff
Fix incorrect article 'an' as 'a' to use for descriptions and message
authorTokunori Ikegami <ikegami.t@gmail.com>
Fri, 5 May 2023 13:09:36 +0000 (22:09 +0900)
committerDaniel Wagner <wagi@monom.org>
Fri, 5 May 2023 14:59:15 +0000 (16:59 +0200)
Signed-off-by: Tokunori Ikegami <ikegami.t@gmail.com>
Documentation/nvme-dsm.txt
nvme-print.c
plugins/zns/zns.c

index e81de14cc9632c569dc5e6704a206278a8b348c5..ff658a78595ff613908e1e14d59245ee47f63607 100644 (file)
@@ -18,7 +18,7 @@ SYNOPSIS
 
 DESCRIPTION
 -----------
-For the NVMe device given, sends an Data Set Management command and
+For the NVMe device given, sends a Data Set Management command and
 provides the result and returned structure.
 
 The <device> parameter is mandatory and may be either the NVMe character
index 38fc8d02251f50601001102710aa3c4a2951ac41..c989435ddb24e6b17e24daae58f2642774726f46 100644 (file)
@@ -1931,7 +1931,7 @@ static void nvme_show_id_ctrl_nvmsr(__u8 nvmsr)
                printf(" [7:2] : %#x\tReserved\n", rsvd);
        printf("  [1:1] : %#x\tNVM subsystem %spart of an Enclosure\n",
                nvmee, nvmee ? "" : "Not ");
-       printf("  [0:0] : %#x\tNVM subsystem %spart of an Storage Device\n",
+       printf("  [0:0] : %#x\tNVM subsystem %spart of a Storage Device\n",
                nvmesd, nvmesd ? "" : "Not ");
        printf("\n");
 }
index f8809ba474b7e139c7155f0a29555bbaf46e4899..4348184914d978bb1a9c4c7389a20bcff7c119be 100644 (file)
@@ -114,7 +114,7 @@ static int list(int argc, char **argv, struct command *cmd,
 
 static int id_ctrl(int argc, char **argv, struct command *cmd, struct plugin *plugin)
 {
-       const char *desc = "Send an ZNS specific Identify Controller command to "\
+       const char *desc = "Send a ZNS specific Identify Controller command to "\
                "the given device and report information about the specified "\
                "controller in various formats.";
 
@@ -158,7 +158,7 @@ close_fd:
 
 static int id_ns(int argc, char **argv, struct command *cmd, struct plugin *plugin)
 {
-       const char *desc = "Send an ZNS specific Identify Namespace command to "\
+       const char *desc = "Send a ZNS specific Identify Namespace command to "\
                "the given device and report information about the specified "\
                "namespace in varios formats.";
        const char *vendor_specific = "dump binary vendor fields";