diff options
author | Peter Stephenson <pws@zsh.org> | 2015-05-05 14:47:11 +0100 |
---|---|---|
committer | Peter Stephenson <pws@zsh.org> | 2015-05-05 14:47:11 +0100 |
commit | fa769f27d628bb03d0c6f9b3e3fc7c83c7fa8bb5 (patch) | |
tree | 168dffc8c8a249045c7a60390e98b70888d8dd65 /Completion | |
parent | cfc2a17c4e0e9128682bcbb96a4a2eafe0a4b425 (diff) | |
download | zsh-fa769f27d628bb03d0c6f9b3e3fc7c83c7fa8bb5.tar.gz zsh-fa769f27d628bb03d0c6f9b3e3fc7c83c7fa8bb5.tar.xz zsh-fa769f27d628bb03d0c6f9b3e3fc7c83c7fa8bb5.zip |
unposted: fix descriptions in previous -zcalc commit (cosmetic)
Diffstat (limited to 'Completion')
-rw-r--r-- | Completion/Zsh/Function/_zcalc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Completion/Zsh/Function/_zcalc b/Completion/Zsh/Function/_zcalc index a4b1e9701..093a7a91d 100644 --- a/Completion/Zsh/Function/_zcalc +++ b/Completion/Zsh/Function/_zcalc @@ -1,7 +1,7 @@ #compdef zcalc _arguments -s -w -S : \ - '-#[Specify default base]:base: ' \ - '-f[Force floating point for all expressions]' \ - '-e[Treat command line as expressions to be output immediately]' \ - '*:Expression: ' + '-#[specify default base]:base: ' \ + '-f[force floating point for all expressions]' \ + '-e[treat command line as expressions to be output immediately]' \ + '*:expression: ' |