mirror of
https://github.com/python/cpython.git
synced 2025-08-03 00:23:06 +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):
|
||||
@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`.)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue