summaryrefslogtreecommitdiff
path: root/ext
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 /ext
parent0b7b4c775dc471bf675616dbdd4af9891e29482e (diff)
update NotImplementError to NotImplementedError.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@3607 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext')
-rw-r--r--ext/tk/lib/tk.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/tk/lib/tk.rb b/ext/tk/lib/tk.rb
index ab7fcc4b39..2e4d9d039e 100644
--- a/ext/tk/lib/tk.rb
+++ b/ext/tk/lib/tk.rb
@@ -2302,10 +2302,10 @@ end
module TkTreatItemFont
def __conf_cmd(idx)
- raise NotImplementError, "need to define `__conf_cmd'"
+ raise NotImplementedError, "need to define `__conf_cmd'"
end
def __item_pathname(tagOrId)
- raise NotImplementError, "need to define `__item_pathname'"
+ raise NotImplementedError, "need to define `__item_pathname'"
end
private :__conf_cmd, :__item_pathname