]> granicus.if.org Git - python/commitdiff
Typos.
authorRaymond Hettinger <python@rcn.com>
Mon, 24 Jan 2011 18:19:01 +0000 (18:19 +0000)
committerRaymond Hettinger <python@rcn.com>
Mon, 24 Jan 2011 18:19:01 +0000 (18:19 +0000)
Doc/whatsnew/3.2.rst

index 4e600171a82ba9674f80c2a13872afc7bec04c87..b510f447e71ab53cbd0c8bb662dc6644ac283f96 100644 (file)
@@ -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`.)