This commit is contained in:
Raymond Hettinger 2011-01-24 18:19:01 +00:00
parent ead4975b9f
commit a80ab10bc2
1 changed files with 2 additions and 2 deletions

View File

@ -984,10 +984,10 @@ implemented::
class Temperature(metaclass=ABCMeta):
@abc.abstractclassmethod
def from_farenheit(self, t):
def from_fahrenheit(self, t):
...
@abc.abstractclassmethod
def from_celsium(self, t):
def from_celsius(self, t):
...
(Patch submitted by Daniel Urban; :issue:`5867`.)