diff options
author | naruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2010-01-12 15:35:08 +0000 |
---|---|---|
committer | naruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2010-01-12 15:35:08 +0000 |
commit | 19f6839c0c5c7c901a3142e35f4b5abcd6ac6913 (patch) | |
tree | e7e9f0fa1a0d7a309d7df2930e09b89518f0eac7 | |
parent | 06dfb68d5465a42857842e549349d243b66205c2 (diff) |
* lib/shell/command-processor.rb: fix typo by Sho Hashimoto.
reported and patched at [ruby-dev:40058] [Bug #2599]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@26309 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | lib/shell/command-processor.rb | 4 |
2 files changed, 7 insertions, 2 deletions
@@ -1,3 +1,8 @@ +Wed Jan 13 00:33:09 2010 NARUSE, Yui <naruse@ruby-lang.org> + + * lib/shell/command-processor.rb: fix typo by Sho Hashimoto. + reported and patched at [ruby-dev:40058] [Bug #2599] + Tue Jan 12 23:48:29 2010 Kouhei Sutou <kou@cozmixng.org> * lib/rss/maker/base.rb, test/rss/test_maker_0.9.rb: diff --git a/lib/shell/command-processor.rb b/lib/shell/command-processor.rb index e224d91368..62fb0cafe6 100644 --- a/lib/shell/command-processor.rb +++ b/lib/shell/command-processor.rb @@ -520,7 +520,7 @@ class Shell id = id.intern if id.kind_of?(String) name = id.id2name if Shell.method_defined?(id) - Shell.notify "warn: override definnition of Shell##{name}." + Shell.notify "warn: override definition of Shell##{name}." Shell.notify "warn: alias Shell##{name} to Shell##{name}_org.\n" Shell.module_eval "alias #{name}_org #{name}" end @@ -536,7 +536,7 @@ class Shell end], __FILE__, __LINE__) if Shell::Filter.method_defined?(id) - Shell.notify "warn: override definnition of Shell::Filter##{name}." + Shell.notify "warn: override definition of Shell::Filter##{name}." Shell.notify "warn: alias Shell##{name} to Shell::Filter##{name}_org." Filter.module_eval "alias #{name}_org #{name}" end |