aboutsummaryrefslogtreecommitdiffstats
path: root/lib/irb
diff options
context:
space:
mode:
authorzzak <zzak@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-12-21 17:29:18 +0000
committerzzak <zzak@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-12-21 17:29:18 +0000
commite8a7607ed0e089c12e9e2df7bdd6c2efd2e58dd9 (patch)
tree538ff9f815daaf1f86858ec656af99a591127afc /lib/irb
parent585afbbc6a833e91cd2e51b8faeece2248c0cc16 (diff)
downloadruby-e8a7607ed0e089c12e9e2df7bdd6c2efd2e58dd9.tar.gz
* lib/irb/input-method.rb, lib/irb.rb: Typo in
InputMethod#readable_atfer_eof? to #readable_after_eof? [ruby-core:51069] [Bug #7599] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@38544 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/irb')
-rw-r--r--lib/irb/input-method.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/irb/input-method.rb b/lib/irb/input-method.rb
index e1a680847c..55363fe0c4 100644
--- a/lib/irb/input-method.rb
+++ b/lib/irb/input-method.rb
@@ -38,7 +38,7 @@ module IRB
# read.
#
# See IO#eof for more information.
- def readable_atfer_eof?
+ def readable_after_eof?
false
end
end
@@ -74,7 +74,7 @@ module IRB
# read.
#
# See IO#eof for more information.
- def readable_atfer_eof?
+ def readable_after_eof?
true
end
@@ -170,7 +170,7 @@ module IRB
# read.
#
# See IO#eof for more information.
- def readable_atfer_eof?
+ def readable_after_eof?
true
end