about summary refs log tree commit diff
path: root/Completion/Debian
diff options
context:
space:
mode:
authorDoug Kearns <dkearns@users.sourceforge.net>2010-06-06 13:44:11 +0000
committerDoug Kearns <dkearns@users.sourceforge.net>2010-06-06 13:44:11 +0000
commita54fdc70be299a203a51d69c4e823f209a4c06ca (patch)
tree6d1c67674d388e1ca64c4210e283d1bd11eea2c7 /Completion/Debian
parent4ad0a25af110e2afe956bce13e901f78fd9e6bcd (diff)
downloadzsh-a54fdc70be299a203a51d69c4e823f209a4c06ca.tar.gz
zsh-a54fdc70be299a203a51d69c4e823f209a4c06ca.tar.xz
zsh-a54fdc70be299a203a51d69c4e823f209a4c06ca.zip
unposted: fix incorrectly capitalized completion descriptions
Diffstat (limited to 'Completion/Debian')
-rw-r--r--Completion/Debian/Command/_apt-file8
1 files changed, 4 insertions, 4 deletions
diff --git a/Completion/Debian/Command/_apt-file b/Completion/Debian/Command/_apt-file
index fcc0482e9..eddbbdcf5 100644
--- a/Completion/Debian/Command/_apt-file
+++ b/Completion/Debian/Command/_apt-file
@@ -24,10 +24,10 @@ _apt-file() {
     case $state in
       cmds)
         cmds=(
-            'update:Resynchronize package contents'
-            'search:Search in which package file is included'
-            'list:List contents of a package'
-            'show:Alias for list'
+            'update:resynchronize package contents'
+            'search:search in which package file is included'
+            'list:list contents of a package'
+            'show:alias for list'
             'purge:remove all Contents-<ARCH>.gz files in cache directory'
         )
         _describe -t commands 'apt-list command' cmds && ret=0