From: Keith Busch Date: Mon, 1 Dec 2014 21:38:47 +0000 (-0700) Subject: NVMe: Fixing typos X-Git-Tag: v0.1~88 X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=cb111796873d45e376c835d56762390a338454ce;p=users%2Fsagi%2Fnvme-cli.git NVMe: Fixing typos Fixing typos propogated from copy-paste from help and documentation. Signed-off-by: Keith Busch --- diff --git a/Documentation/nvme-format.txt b/Documentation/nvme-format.txt index 64658854..99b3049e 100644 --- a/Documentation/nvme-format.txt +++ b/Documentation/nvme-format.txt @@ -1,5 +1,5 @@ -nvme-help(1) -============= +nvme-format(1) +============== NAME ---- diff --git a/Documentation/nvme-fw-activate.txt b/Documentation/nvme-fw-activate.txt index e64fae5a..57c29c31 100644 --- a/Documentation/nvme-fw-activate.txt +++ b/Documentation/nvme-fw-activate.txt @@ -1,5 +1,5 @@ -nvme-help(1) -============= +nvme-fw-activate(1) +=================== NAME ---- diff --git a/Documentation/nvme-fw-download.txt b/Documentation/nvme-fw-download.txt index a842a614..ca208cb9 100644 --- a/Documentation/nvme-fw-download.txt +++ b/Documentation/nvme-fw-download.txt @@ -1,5 +1,5 @@ -nvme-help(1) -============= +nvme-fw-download(1) +=================== NAME ---- diff --git a/Documentation/nvme-resv-acquire.txt b/Documentation/nvme-resv-acquire.txt index 56f87866..a46e0bb7 100644 --- a/Documentation/nvme-resv-acquire.txt +++ b/Documentation/nvme-resv-acquire.txt @@ -1,5 +1,5 @@ -nvme-help(1) -============= +nvme-resv-acquire(1) +==================== NAME ---- diff --git a/Documentation/nvme-resv-register.txt b/Documentation/nvme-resv-register.txt index 420c3298..7d6d1d8f 100644 --- a/Documentation/nvme-resv-register.txt +++ b/Documentation/nvme-resv-register.txt @@ -1,5 +1,5 @@ -nvme-help(1) -============= +nvme-resv-register(1) +===================== NAME ---- diff --git a/Documentation/nvme-resv-release.txt b/Documentation/nvme-resv-release.txt index 00747daf..b4c49d79 100644 --- a/Documentation/nvme-resv-release.txt +++ b/Documentation/nvme-resv-release.txt @@ -1,5 +1,5 @@ -nvme-help(1) -============= +nvme-resv-release(1) +==================== NAME ---- diff --git a/Documentation/nvme-resv-report.txt b/Documentation/nvme-resv-report.txt index fd93b873..29fb23d6 100644 --- a/Documentation/nvme-resv-report.txt +++ b/Documentation/nvme-resv-report.txt @@ -1,5 +1,5 @@ -nvme-id-ns(1) -============= +nvme-resv-report(1) +=================== NAME ---- diff --git a/Documentation/nvme-security-recv.txt b/Documentation/nvme-security-recv.txt index 639e0962..7c055b6c 100644 --- a/Documentation/nvme-security-recv.txt +++ b/Documentation/nvme-security-recv.txt @@ -1,5 +1,5 @@ -nvme-help(1) -============= +nvme-security-recv(1) +===================== NAME ---- diff --git a/Documentation/nvme-security-send.txt b/Documentation/nvme-security-send.txt index 1e443d77..0422eab9 100644 --- a/Documentation/nvme-security-send.txt +++ b/Documentation/nvme-security-send.txt @@ -1,5 +1,5 @@ -nvme-help(1) -============= +nvme-security-send(1) +===================== NAME ---- diff --git a/nvme.c b/nvme.c index df0c689f..8d53fd02 100644 --- a/nvme.c +++ b/nvme.c @@ -45,9 +45,9 @@ static const char *devicename; #define COMMAND_LIST \ ENTRY(ID_CTRL, "id-ctrl", "Send NVMe Identify Controller", id_ctrl) \ - ENTRY(ID_NS, "id-ns", "Send NVMe Identify Namespace, disaply structure", id_ns) \ - ENTRY(LIST_NS, "list-ns", "Send NVMe Identify List, disaply structure", list_ns) \ - ENTRY(GET_NS_ID, "get-ns-id", "Retrieve the namespace ID of opend block device", get_ns_id) \ + ENTRY(ID_NS, "id-ns", "Send NVMe Identify Namespace, display structure", id_ns) \ + ENTRY(LIST_NS, "list-ns", "Send NVMe Identify List, display structure", list_ns) \ + ENTRY(GET_NS_ID, "get-ns-id", "Retrieve the namespace ID of opened block device", get_ns_id) \ ENTRY(GET_LOG, "get-log", "Generic NVMe get log, returns log in raw format", get_log) \ ENTRY(GET_FW_LOG, "fw-log", "Retrieve FW Log, show it", get_fw_log) \ ENTRY(GET_SMART_LOG, "smart-log", "Retrieve SMART Log, show it", get_smart_log) \