diff options
author | Raymond Hettinger <python@rcn.com> | 2011-01-24 18:19:01 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2011-01-24 18:19:01 (GMT) |
commit | a80ab10bc29091fae854ebd8969bb01468886e6f (patch) | |
tree | 13295ff44503317c5e3b156c584c40040b24a63a /Doc | |
parent | ead4975b9f40e913eeb8f2b87a184a01123516d8 (diff) | |
download | cpython-a80ab10bc29091fae854ebd8969bb01468886e6f.zip cpython-a80ab10bc29091fae854ebd8969bb01468886e6f.tar.gz cpython-a80ab10bc29091fae854ebd8969bb01468886e6f.tar.bz2 |
Typos.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/whatsnew/3.2.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/whatsnew/3.2.rst b/Doc/whatsnew/3.2.rst index 4e60017..b510f44 100644 --- a/Doc/whatsnew/3.2.rst +++ b/Doc/whatsnew/3.2.rst @@ -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`.) |