]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
[3.12] Fix typo in importlib.metadata.rst (gh-131596) (#131631)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Thu, 27 Mar 2025 13:43:03 +0000 (14:43 +0100)
committerGitHub <noreply@github.com>
Thu, 27 Mar 2025 13:43:03 +0000 (15:43 +0200)
Fix typo in importlib.metadata.rst (gh-131596)
(cherry picked from commit 5fc889ffbfd271c651f563ab0afe2d345bacbca5)

Co-authored-by: Zsolt Dollenstein <zsol.zsol@gmail.com>
Doc/library/importlib.metadata.rst

index 5dcaabba9f16611961721ee66f68d0b6290c658d..826ff780533e26ed9e98a31d4a1c4e44cea7c284 100644 (file)
@@ -420,7 +420,7 @@ While the module level API described above is the most common and convenient usa
 you can get all of that information from the :class:`!Distribution` class.
 :class:`!Distribution` is an abstract object that represents the metadata for
 a Python `Distribution Package <https://packaging.python.org/en/latest/glossary/#term-Distribution-Package>`_.
-You can get the concreate :class:`!Distribution` subclass instance for an installed
+You can get the concrete :class:`!Distribution` subclass instance for an installed
 distribution package by calling the :func:`distribution` function::
 
     >>> from importlib.metadata import distribution  # doctest: +SKIP