about summary refs log tree commit diff
path: root/Completion/Solaris/Command/_svccfg
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/Solaris/Command/_svccfg
parent4ad0a25af110e2afe956bce13e901f78fd9e6bcd (diff)
downloadzsh-a54fdc70be299a203a51d69c4e823f209a4c06ca.tar.gz
zsh-a54fdc70be299a203a51d69c4e823f209a4c06ca.tar.xz
zsh-a54fdc70be299a203a51d69c4e823f209a4c06ca.zip
unposted: fix incorrectly capitalized completion descriptions
Diffstat (limited to 'Completion/Solaris/Command/_svccfg')
-rw-r--r--Completion/Solaris/Command/_svccfg14
1 files changed, 7 insertions, 7 deletions
diff --git a/Completion/Solaris/Command/_svccfg b/Completion/Solaris/Command/_svccfg
index 5d1bf358a..10b84bda3 100644
--- a/Completion/Solaris/Command/_svccfg
+++ b/Completion/Solaris/Command/_svccfg
@@ -25,11 +25,11 @@ _svccfg() {
 
 	if [[ $service == "svccfg" ]]; then
 		_arguments -s \
-			'-?[Help]' \
-			'-v[Verbose]' \
+			'-?[help]' \
+			'-v[verbose]' \
 			'-s[FMRI on which to operate]:fmri:_svcs_fmri -c' \
 			- set1 \
-			'-f[Read commands from file]:command file:_files' \
+			'-f[read commands from file]:command file:_files' \
 			- set2 \
 			'*::command:->subcmd' && return 0
 
@@ -44,7 +44,7 @@ _svccfg() {
 	case $service in
 	(import)
 		_arguments \
-			'-V[Verify property updates]' \
+			'-V[verify property updates]' \
 			':file:_files'
 		;;
 
@@ -62,15 +62,15 @@ _svccfg() {
 
 	(delete)
 		_arguments \
-			'-f[Force deletion if online or degraded]' \
+			'-f[force deletion if online or degraded]' \
 			'*:FMRI:_svcs_fmri -c'
 		;;
 
 	(describe)
 		local fmri=$opt_args[-s]
 		_arguments -A "-*" \
-			'-v[Give all information]' \
-			'-t[Show only template data]' \
+			'-v[give all information]' \
+			'-t[show only template data]' \
 			":property group or property:_svccfg_properties $fmri"
 		;;