bpo-31333: Fix typo in whatsnew/3.7.rst (GH-5744) · python/cpython@3fb813d (original) (raw)

Original file line number Diff line number Diff line change
@@ -853,7 +853,7 @@ Optimizations
853 853 * Constant folding is moved from peephole optimizer to new AST optimizer.
854 854 (Contributed by Eugene Toder and INADA Naoki in :issue:`29469`)
855 855
856 -* Most functions and methods in :mod:`abc` have been rewrittent in C.
856 +* Most functions and methods in :mod:`abc` have been rewritten in C.
857 857 This makes creation of abstract base classes, and calling :func:`isinstance`
858 858 and :func:`issubclass` on them 1.5x faster. This also reduces Python
859 859 start-up time by up to 10%. (Contributed by Ivan Levkivskyi and INADA Naoki