From bf48614624b56828cdd317d174bfaa0a6a860702 Mon Sep 17 00:00:00 2001 From: matz Date: Sun, 23 Mar 2003 17:58:57 +0000 Subject: update NotImplementError to NotImplementedError. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@3607 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ext/tk/lib/tk.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ext/tk/lib') diff --git a/ext/tk/lib/tk.rb b/ext/tk/lib/tk.rb index ab7fcc4b3..2e4d9d039 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 -- cgit