lvm: Fix typo in option name: s/continguous/contiguous/.

This commit is contained in:
Igor Murzov 2012-11-03 23:19:53 +04:00
parent 6be86286d6
commit b2365b3d87

View File

@ -647,7 +647,7 @@ _lvchange()
_init_completion || return
case $prev in
-a|-A|-C|-M|--available|--autobackup|--continguous|--persistent)
-a|-A|-C|-M|--available|--autobackup|--contiguous|--persistent)
COMPREPLY=( $( compgen -W 'y n' -- "$cur" ) )
return 0
;;
@ -671,7 +671,7 @@ _lvcreate()
_init_completion || return
case $prev in
-A|-C|-M|-Z|--autobackup|--continguous|--persistent|--zero)
-A|-C|-M|-Z|--autobackup|--contiguous|--persistent|--zero)
COMPREPLY=( $( compgen -W 'y n' -- "$cur" ) )
return 0
;;