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

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