Skip to content

Commit 77a5ee4

Browse files
committed
completions: fix zsh completions array parameter names
Since copied from the exsisting completion but missed to change. Signed-off-by: Tokunori Ikegami <ikegami.t@gmail.com>
1 parent 1e5e709 commit 77a5ee4

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

completions/_nvme

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2644,7 +2644,7 @@ _nvme () {
26442644
;;
26452645
(mgmt-addr-list-log)
26462646
local _mal_log
2647-
_caplog=(
2647+
_mal_log=(
26482648
/dev/nvme':supply a device to use (required)'
26492649
--verbose':Increase the information detail in the output.'
26502650
-v':alias for --verbose'
@@ -2658,7 +2658,7 @@ _nvme () {
26582658
;;
26592659
(rotational-media-info-log)
26602660
local _rmi_log
2661-
_caplog=(
2661+
_rmi_log=(
26622662
/dev/nvme':supply a device to use (required)'
26632663
--endg-id=':Endurance Group Identifier'
26642664
-e':alias of --endg-id'
@@ -2688,7 +2688,7 @@ _nvme () {
26882688
;;
26892689
(dispersed-ns-participating-nss-log)
26902690
local _dns_psub_log
2691-
_caplog=(
2691+
_dns_psub_log=(
26922692
/dev/nvme':supply a device to use (required)'
26932693
--namespace-id=':show infos for namespace <nsid>'
26942694
-n':alias of --namespace-id'
@@ -2704,7 +2704,7 @@ _nvme () {
27042704
;;
27052705
(reachability-groups-log)
27062706
local _rg_log
2707-
_caplog=(
2707+
_rg_log=(
27082708
/dev/nvme':supply a device to use (required)'
27092709
--groups-only':Return Groups Only'
27102710
-g':alias for --groups-only'
@@ -2722,7 +2722,7 @@ _nvme () {
27222722
;;
27232723
(reachability-associations-log)
27242724
local _ra_log
2725-
_caplog=(
2725+
_ra_log=(
27262726
/dev/nvme':supply a device to use (required)'
27272727
--associations-only':Return Associations Only'
27282728
-a':alias for --associations-only'

0 commit comments

Comments
 (0)