https://github.com/python/cpython/commit/3806772b3d30a574eb26bcc3a1e0ceae49ad4401
commit: 3806772b3d30a574eb26bcc3a1e0ceae49ad4401
branch: 3.12
author: Rafael Fontenelle <[email protected]>
committer: brettcannon <[email protected]>
date: 2024-11-25T11:48:00-08:00
summary:

[3.12] Fix a few typos found in the docs (GH-127126) (GH-127185)

(cherry picked from commit 39e60aeb3837f1f23d8b7f30d3b8d9faf805ef88)

files:
M Doc/library/importlib.metadata.rst
M Doc/library/multiprocessing.rst
M Doc/library/socket.rst

diff --git a/Doc/library/importlib.metadata.rst 
b/Doc/library/importlib.metadata.rst
index fe898cf4af8bd5..289e02ccdc153c 100644
--- a/Doc/library/importlib.metadata.rst
+++ b/Doc/library/importlib.metadata.rst
@@ -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.
 
diff --git a/Doc/library/multiprocessing.rst b/Doc/library/multiprocessing.rst
index f2a9ada85e235a..3fec86080c5ead 100644
--- a/Doc/library/multiprocessing.rst
+++ b/Doc/library/multiprocessing.rst
@@ -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])
diff --git a/Doc/library/socket.rst b/Doc/library/socket.rst
index ab0ede803a0509..dd4c2f8317d120 100644
--- a/Doc/library/socket.rst
+++ b/Doc/library/socket.rst
@@ -966,7 +966,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.)

_______________________________________________
Python-checkins mailing list -- [email protected]
To unsubscribe send an email to [email protected]
https://mail.python.org/mailman3/lists/python-checkins.python.org/
Member address: [email protected]

Reply via email to