]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
no-issue: Fix typo in importlib.metadata.rst (gh-131596)
authorZsolt Dollenstein <zsol.zsol@gmail.com>
Sun, 23 Mar 2025 14:01:29 +0000 (14:01 +0000)
committerGitHub <noreply@github.com>
Sun, 23 Mar 2025 14:01:29 +0000 (23:01 +0900)
Doc/library/importlib.metadata.rst

index 67df24797135ca445c29a86dc335643a54fe88f9..c84fe9b87863f378ac30f8ee40a99347fd25ea61 100644 (file)
@@ -422,7 +422,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