diff options
author | Bart Schaefer <barts@users.sourceforge.net> | 2004-06-24 15:45:58 +0000 |
---|---|---|
committer | Bart Schaefer <barts@users.sourceforge.net> | 2004-06-24 15:45:58 +0000 |
commit | 125bc163d6abf5fe8a8e7b615ba9830bdb0affeb (patch) | |
tree | 4f157853b4262145a1d5ee77288131f6f7a1207b | |
parent | fd1676f3973eb2c72655f4249675c0f39dac73c6 (diff) | |
download | zsh-125bc163d6abf5fe8a8e7b615ba9830bdb0affeb.tar.gz zsh-125bc163d6abf5fe8a8e7b615ba9830bdb0affeb.tar.xz zsh-125bc163d6abf5fe8a8e7b615ba9830bdb0affeb.zip |
Fix typos in some descriptions.
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | Completion/Zsh/Context/_condition | 6 |
2 files changed, 8 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog index 483d57d19..3192ab516 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2004-06-24 Bart Schaefer <schaefer@zsh.org> + + * unposted (see 20092): Completion/Zsh/Context/_condition: fix + typos in descriptions. + 2004-06-23 Peter Stephenson <pws@csr.com> * 20089: Doc/Zsh/contrib.yo, Functions/Misc/zed, diff --git a/Completion/Zsh/Context/_condition b/Completion/Zsh/Context/_condition index 46f8467b7..6f5e601f0 100644 --- a/Completion/Zsh/Context/_condition +++ b/Completion/Zsh/Context/_condition @@ -46,9 +46,9 @@ else -eq:numerically\ equal -ne:numerically\ not\ equal -lt:numerically\ less\ than - -le:numerically\ less\ then\ or\ equal - -lt:numerically\ greater\ than - -le:numerically\ greater\ then\ or\ equal)' && ret=0 + -le:numerically\ less\ than\ or\ equal + -gt:numerically\ greater\ than + -ge:numerically\ greater\ than\ or\ equal)' && ret=0 fi fi _alternative 'files:: _files' 'parameters:: _parameters' && ret=0 |