From b2365b3d8743fb0fdca70c5138e66e6b389ba5bd Mon Sep 17 00:00:00 2001 From: Igor Murzov Date: Sat, 3 Nov 2012 23:19:53 +0400 Subject: [PATCH] lvm: Fix typo in option name: s/continguous/contiguous/. --- completions/lvm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/completions/lvm b/completions/lvm index 85487533..b3854cfa 100644 --- a/completions/lvm +++ b/completions/lvm @@ -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 ;;