]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Fix some typos in whatsnew (GH-32098)
authorKurt McKee <contactme@kurtmckee.org>
Fri, 25 Mar 2022 17:32:05 +0000 (10:32 -0700)
committerGitHub <noreply@github.com>
Fri, 25 Mar 2022 17:32:05 +0000 (10:32 -0700)
* Fix some typos and phrasing

* Convert the `hash()` text to a link

* Remove definite article

Doc/whatsnew/3.11.rst

index 8c120ec45fe3fcb99ed440d5985329d34746af9e..2c09d3583ea151eae49fbb2dd6a898ffc5c91371 100644 (file)
@@ -193,9 +193,9 @@ Other CPython Implementation Changes
   support :class:`typing.SupportsComplex` and :class:`typing.SupportsBytes` protocols.
   (Contributed by Mark Dickinson and Dong-hee Na in :issue:`24234`.)
 
-* ``siphash13`` is added as a new internal hashing algorithms. It's has similar security
+* ``siphash13`` is added as a new internal hashing algorithms. It has similar security
   properties as ``siphash24`` but it is slightly faster for long inputs. ``str``, ``bytes``,
-  and some other types now use it as default algorithm for ``hash()``. :pep:`552`
+  and some other types now use it as default algorithm for :func:`hash`. :pep:`552`
   hash-based pyc files now use ``siphash13``, too.
   (Contributed by Inada Naoki in :issue:`29410`.)
 
@@ -210,9 +210,9 @@ Other CPython Implementation Changes
   have been removed as their values can be derived from ``exc_value``.
   (Contributed by Irit Katriel in :issue:`45711`.)
 
-* A new command line option for the Windows installer ``AppendPath`` has beend added.
+* A new command line option for the Windows installer ``AppendPath`` has been added.
   It behaves similiar to ``PrependPath`` but appends the install and scripts directories
-  instead of prepending it.
+  instead of prepending them.
   (Contributed by Bastian Neuburger in :issue:`44934`.)