diff options
| author | Jun-ichi Takimoto <takimoto-j@kba.biglobe.ne.jp> | 2015-01-28 23:19:48 +0900 |
|---|---|---|
| committer | Jun-ichi Takimoto <takimoto-j@kba.biglobe.ne.jp> | 2015-01-28 23:19:48 +0900 |
| commit | f591458321362ab0b3d7b383e9343b1d33f98218 (patch) | |
| tree | 4ff1fc6f167a65f5a1f90de9f2494f1b9c970c7a | |
| parent | Missing change log entry (diff) | |
| download | zsh-f591458321362ab0b3d7b383e9343b1d33f98218.tar zsh-f591458321362ab0b3d7b383e9343b1d33f98218.tar.gz zsh-f591458321362ab0b3d7b383e9343b1d33f98218.tar.bz2 zsh-f591458321362ab0b3d7b383e9343b1d33f98218.tar.lz zsh-f591458321362ab0b3d7b383e9343b1d33f98218.tar.xz zsh-f591458321362ab0b3d7b383e9343b1d33f98218.tar.zst zsh-f591458321362ab0b3d7b383e9343b1d33f98218.zip | |
34423: fix a typo in _ruby
| -rw-r--r-- | ChangeLog | 4 | ||||
| -rw-r--r-- | Completion/Unix/Command/_ruby | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -1,3 +1,7 @@ +2015-01-28 Jun-ichi Takimoto <takimoto-j@kba.biglobe.ne.jp> + + * 34423: _ruby: fix a typo + 2015-01-27 Frank Terbeck <ft@bewatermyfriend.org> * 34419: Doc/Zsh/contrib.yo: vcs_info documentation: Fix wording diff --git a/Completion/Unix/Command/_ruby b/Completion/Unix/Command/_ruby index 946ebe270..49a1170ef 100644 --- a/Completion/Unix/Command/_ruby +++ b/Completion/Unix/Command/_ruby @@ -95,7 +95,7 @@ case "$service" in _arguments -C -s : $irb $all $common && ret=0 ;; erb[0-9.]#) - RUBY=${words[1]/irb/ruby} + RUBY=${words[1]/erb/ruby} _arguments -C -s : $erb $all \ '*:erb file:_files -g "*.erb(-.)"' && ret=0 ;; |
