From 3f132d9360467622a5c0820961cf6146b8fcf4f8 Mon Sep 17 00:00:00 2001 From: Zsolt Dollenstein Date: Sun, 23 Mar 2025 14:01:29 +0000 Subject: [PATCH] no-issue: Fix typo in importlib.metadata.rst (gh-131596) (cherry picked from commit 5fc889ffbfd271c651f563ab0afe2d345bacbca5) Co-authored-by: Zsolt Dollenstein --- Doc/library/importlib.metadata.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/importlib.metadata.rst b/Doc/library/importlib.metadata.rst index 1433da3fad869e..147338d410c2a5 100644 --- a/Doc/library/importlib.metadata.rst +++ b/Doc/library/importlib.metadata.rst @@ -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 `_. -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