]> granicus.if.org Git - python/commitdiff
bpo-31333: Fix typo in whatsnew/3.7.rst (GH-5744)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Sun, 18 Feb 2018 22:35:40 +0000 (14:35 -0800)
committerGitHub <noreply@github.com>
Sun, 18 Feb 2018 22:35:40 +0000 (14:35 -0800)
(cherry picked from commit 3fb813d2c67fe28cc98ae51e53a6890294b6e423)

Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
Doc/whatsnew/3.7.rst

index 80bc8fb3d9514555f6d5a7af728bf3182d0bde0c..2ca1eed2155ef19d507867f0ae2d4eac1d60711e 100644 (file)
@@ -845,7 +845,7 @@ Optimizations
 * Constant folding is moved from peephole optimizer to new AST optimizer.
   (Contributed by Eugene Toder and INADA Naoki in :issue:`29469`)
 
-* Most functions and methods in :mod:`abc` have been rewrittent in C.
+* Most functions and methods in :mod:`abc` have been rewritten in C.
   This makes creation of abstract base classes, and calling :func:`isinstance`
   and :func:`issubclass` on them 1.5x faster.  This also reduces Python
   start-up time by up to 10%. (Contributed by Ivan Levkivskyi and INADA Naoki