]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
[3.13] Fix a few typos found in the docs (GH-127126) (GH-127181)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Sat, 23 Nov 2024 00:09:35 +0000 (01:09 +0100)
committerGitHub <noreply@github.com>
Sat, 23 Nov 2024 00:09:35 +0000 (00:09 +0000)
Fix a few typos found in the docs (GH-127126)
(cherry picked from commit 39e60aeb3837f1f23d8b7f30d3b8d9faf805ef88)

Co-authored-by: Rafael Fontenelle <rffontenelle@users.noreply.github.com>
Doc/library/importlib.metadata.rst
Doc/library/multiprocessing.rst
Doc/library/socket.rst
Misc/NEWS.d/3.13.0a6.rst

index b712a559bb3b3f8c749570e525e5ee80deca262b..c38da0bd341fc9253cf1e4d5e56fc3252852a0a2 100644 (file)
@@ -133,7 +133,7 @@ Entry points
 
    Details of a collection of installed entry points.
 
-   Also provides a ``.groups`` attribute that reports all identifed entry
+   Also provides a ``.groups`` attribute that reports all identified entry
    point groups, and a ``.names`` attribute that reports all identified entry
    point names.
 
index 80d6e4dae24463bcc5e9fda39b7020f91b881a78..38104bb7c5f4d47d9184b23b5bc40b871a06217c 100644 (file)
@@ -282,7 +282,7 @@ processes:
    of corruption from processes using different ends of the pipe at the same
    time.
 
-   The :meth:`~Connection.send` method serializes the the object and
+   The :meth:`~Connection.send` method serializes the object and
    :meth:`~Connection.recv` re-creates the object.
 
 Synchronization between processes
@@ -819,7 +819,7 @@ For an example of the usage of queues for interprocess communication see
    used for receiving messages and ``conn2`` can only be used for sending
    messages.
 
-   The :meth:`~multiprocessing.Connection.send` method serializes the the object using
+   The :meth:`~multiprocessing.Connection.send` method serializes the object using
    :mod:`pickle` and the :meth:`~multiprocessing.Connection.recv` re-creates the object.
 
 .. class:: Queue([maxsize])
index d85b0afe114f9f86843fb0d94befd3c4b54c4f82..9ae0185588f493784a44dcb7d1d9ec74c21225fa 100644 (file)
@@ -971,7 +971,7 @@ The :mod:`socket` module also offers various network-related services:
       These addresses should generally be tried in order until a connection succeeds
       (possibly tried in parallel, for example, using a `Happy Eyeballs`_ algorithm).
       In these cases, limiting the *type* and/or *proto* can help eliminate
-      unsuccessful or unusable connecton attempts.
+      unsuccessful or unusable connection attempts.
 
       Some systems will, however, only return a single address.
       (For example, this was reported on Solaris and AIX configurations.)
index b9cdbc4e146d5a0792dcb1efc8820c69087acc8f..2740b4f0d967bab5396b5755c8e4e1c9c4baa090 100644 (file)
@@ -642,7 +642,7 @@ Also in the corresponding :class:`ipaddress.IPv4Network` and
 .. nonce: OToJnG
 .. section: Library
 
-In :mod:`encodings.idna`, any capitalization of the the ACE prefix
+In :mod:`encodings.idna`, any capitalization of the ACE prefix
 (``xn--``) is now acceptable. Patch by Pepijn de Vos and Zackery Spytz.
 
 ..