From: Raymond Hettinger Date: Mon, 24 Jan 2011 18:19:01 +0000 (+0000) Subject: Typos. X-Git-Tag: v3.2rc2~64 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a80ab10bc29091fae854ebd8969bb01468886e6f;p=thirdparty%2FPython%2Fcpython.git Typos. --- diff --git a/Doc/whatsnew/3.2.rst b/Doc/whatsnew/3.2.rst index 4e600171a82b..b510f447e71a 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`.)