update NotImplementError to NotImplementedError.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@3607 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
matz 2003-03-23 17:58:57 +00:00
parent 0b7b4c775d
commit e5282ef182
6 changed files with 6 additions and 11 deletions

View file

@ -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