aboutsummaryrefslogtreecommitdiffstats
path: root/lib/irb/input-method.rb
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-03-23 17:58:57 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-03-23 17:58:57 +0000
commite5282ef182fbd11e2cfd41b752003367320e409f (patch)
treedb60321dd580958a6d9931619e483bad16fb81ca /lib/irb/input-method.rb
parent0b7b4c775dc471bf675616dbdd4af9891e29482e (diff)
downloadruby-e5282ef182fbd11e2cfd41b752003367320e409f.tar.gz
update NotImplementError to NotImplementedError.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@3607 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/irb/input-method.rb')
-rw-r--r--lib/irb/input-method.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/irb/input-method.rb b/lib/irb/input-method.rb
index 65a016fd07..ec834b17bc 100644
--- a/lib/irb/input-method.rb
+++ b/lib/irb/input-method.rb
@@ -28,7 +28,7 @@ module IRB
attr_accessor :prompt
def gets
- IRB.fail NotImplementError, "gets"
+ IRB.fail NotImplementedError, "gets"
end
public :gets