Skip to content

[3.13] Fix a few typos found in the docs (GH-127126) #127181

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Nov 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Doc/library/importlib.metadata.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down
4 changes: 2 additions & 2 deletions Doc/library/multiprocessing.rst
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@
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

Check warning on line 285 in Doc/library/multiprocessing.rst

View workflow job for this annotation

GitHub Actions / Docs / Docs

py:meth reference target not found: Connection.send [ref.meth]

Check warning on line 285 in Doc/library/multiprocessing.rst

View workflow job for this annotation

GitHub Actions / Docs / Docs

py:meth reference target not found: Connection.recv [ref.meth]
:meth:`~Connection.recv` re-creates the object.

Synchronization between processes
Expand Down Expand Up @@ -819,7 +819,7 @@
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

Check warning on line 822 in Doc/library/multiprocessing.rst

View workflow job for this annotation

GitHub Actions / Docs / Docs

py:meth reference target not found: multiprocessing.Connection.send [ref.meth]

Check warning on line 822 in Doc/library/multiprocessing.rst

View workflow job for this annotation

GitHub Actions / Docs / Docs

py:meth reference target not found: multiprocessing.Connection.recv [ref.meth]
:mod:`pickle` and the :meth:`~multiprocessing.Connection.recv` re-creates the object.

.. class:: Queue([maxsize])
Expand Down
2 changes: 1 addition & 1 deletion Doc/library/socket.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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.)
Expand Down
2 changes: 1 addition & 1 deletion Misc/NEWS.d/3.13.0a6.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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.

..
Expand Down
Loading