diff options
| author | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-03-23 17:58:57 +0000 |
|---|---|---|
| committer | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-03-23 17:58:57 +0000 |
| commit | bf48614624b56828cdd317d174bfaa0a6a860702 (patch) | |
| tree | db60321dd580958a6d9931619e483bad16fb81ca /ext/tk/lib | |
| parent | e963200ff67bd215b1205e43d11a70c8aa8b6f67 (diff) | |
| download | ruby-bf48614624b56828cdd317d174bfaa0a6a860702.tar.gz ruby-bf48614624b56828cdd317d174bfaa0a6a860702.tar.xz ruby-bf48614624b56828cdd317d174bfaa0a6a860702.zip | |
update NotImplementError to NotImplementedError.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@3607 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/tk/lib')
| -rw-r--r-- | ext/tk/lib/tk.rb | 4 |
1 files changed, 2 insertions, 2 deletions
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 |
