commit | a80ab10bc29091fae854ebd8969bb01468886e6f | [log] [tgz] |
---|---|---|
author | Raymond Hettinger <python@rcn.com> | Mon Jan 24 18:19:01 2011 +0000 |
committer | Raymond Hettinger <python@rcn.com> | Mon Jan 24 18:19:01 2011 +0000 |
tree | 13295ff44503317c5e3b156c584c40040b24a63a | |
parent | ead4975b9f40e913eeb8f2b87a184a01123516d8 [diff] |
Typos.
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 @@ 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`.)