mirror of
https://github.com/python/cpython.git
synced 2025-09-27 02:39:58 +00:00
Typos.
This commit is contained in:
parent
ead4975b9f
commit
a80ab10bc2
1 changed files with 2 additions and 2 deletions
|
@ -984,10 +984,10 @@ implemented::
|
||||||
|
|
||||||
class Temperature(metaclass=ABCMeta):
|
class Temperature(metaclass=ABCMeta):
|
||||||
@abc.abstractclassmethod
|
@abc.abstractclassmethod
|
||||||
def from_farenheit(self, t):
|
def from_fahrenheit(self, t):
|
||||||
...
|
...
|
||||||
@abc.abstractclassmethod
|
@abc.abstractclassmethod
|
||||||
def from_celsium(self, t):
|
def from_celsius(self, t):
|
||||||
...
|
...
|
||||||
|
|
||||||
(Patch submitted by Daniel Urban; :issue:`5867`.)
|
(Patch submitted by Daniel Urban; :issue:`5867`.)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue