diff options
author | Doug Kearns <dkearns@users.sourceforge.net> | 2010-06-06 13:44:11 +0000 |
---|---|---|
committer | Doug Kearns <dkearns@users.sourceforge.net> | 2010-06-06 13:44:11 +0000 |
commit | a54fdc70be299a203a51d69c4e823f209a4c06ca (patch) | |
tree | 6d1c67674d388e1ca64c4210e283d1bd11eea2c7 /Completion/Solaris/Command/_svcadm | |
parent | 4ad0a25af110e2afe956bce13e901f78fd9e6bcd (diff) | |
download | zsh-a54fdc70be299a203a51d69c4e823f209a4c06ca.tar.gz zsh-a54fdc70be299a203a51d69c4e823f209a4c06ca.tar.xz zsh-a54fdc70be299a203a51d69c4e823f209a4c06ca.zip |
unposted: fix incorrectly capitalized completion descriptions
Diffstat (limited to 'Completion/Solaris/Command/_svcadm')
-rw-r--r-- | Completion/Solaris/Command/_svcadm | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/Completion/Solaris/Command/_svcadm b/Completion/Solaris/Command/_svcadm index c2e91a6fe..8cd001f29 100644 --- a/Completion/Solaris/Command/_svcadm +++ b/Completion/Solaris/Command/_svcadm @@ -8,7 +8,7 @@ _svcadm() { if [[ $service == "svcadm" ]]; then _arguments -C -A "-*" \ - '-v[Print actions verbosely]' \ + '-v[print actions verbosely]' \ '*::command:->subcmd' && return 0 if (( CURRENT == 1 )); then @@ -22,23 +22,23 @@ _svcadm() { case $service in (enable) _arguments \ - '-r[Recursively enable dependencies]' \ - '-s[Wait for service to come online]' \ - '-t[State change is temporary]' \ + '-r[recursively enable dependencies]' \ + '-s[wait for service to come online]' \ + '-t[state change is temporary]' \ '*:instance FMRI:_svcs_fmri -i' ;; (disable) _arguments \ - '-s[Wait for service to become disabled]' \ - '-t[State change is temporary]' \ + '-s[wait for service to become disabled]' \ + '-t[state change is temporary]' \ '*:instance FMRI:_svcs_fmri -i' ;; (mark) _arguments \ - '-I[Change state immediately]' \ - '-t[State change is temporary]' \ + '-I[change state immediately]' \ + '-t[state change is temporary]' \ ':state:(degraded maintenance)' \ ':instance FMRI:_svcs_fmri -i' ;; @@ -50,7 +50,7 @@ _svcadm() { (milestone) _arguments \ - '-d[Make milestone the default]' \ + '-d[make milestone the default]' \ '*:milestone FMRI:_svcs_fmri -m' ;; |