summaryrefslogtreecommitdiffstats
path: root/Doc/whatsnew
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2011-01-24 18:19:01 (GMT)
committerRaymond Hettinger <python@rcn.com>2011-01-24 18:19:01 (GMT)
commita80ab10bc29091fae854ebd8969bb01468886e6f (patch)
tree13295ff44503317c5e3b156c584c40040b24a63a /Doc/whatsnew
parentead4975b9f40e913eeb8f2b87a184a01123516d8 (diff)
downloadcpython-a80ab10bc29091fae854ebd8969bb01468886e6f.zip
cpython-a80ab10bc29091fae854ebd8969bb01468886e6f.tar.gz
cpython-a80ab10bc29091fae854ebd8969bb01468886e6f.tar.bz2
Typos.
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r--Doc/whatsnew/3.2.rst4
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`.)