From 19f6839c0c5c7c901a3142e35f4b5abcd6ac6913 Mon Sep 17 00:00:00 2001 From: naruse Date: Tue, 12 Jan 2010 15:35:08 +0000 Subject: [PATCH] * 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 --- ChangeLog | 5 +++++ lib/shell/command-processor.rb | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 02e9e1371f..dd8e1367e8 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Wed Jan 13 00:33:09 2010 NARUSE, Yui + + * 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 * 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