From fc94d55ff453a3101e4c00a394d4e38ae2fece13 Mon Sep 17 00:00:00 2001 From: ab Date: Sun, 30 Oct 2022 00:42:59 +0200 Subject: [PATCH] glossary.rst: Fix typo in package definition (GH-98865) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This is a tiny typo fix of package definition in glossary. According to https://devguide.python.org/documentation/help-documenting/ simple typos don’t require issues of their own, but, instead, a pull request can by submitted directly. Automerge-Triggered-By: GH:AlexWaygood --- Doc/glossary.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/glossary.rst b/Doc/glossary.rst index 59f9426f603..3d74d550dc3 100644 --- a/Doc/glossary.rst +++ b/Doc/glossary.rst @@ -882,7 +882,7 @@ Glossary package A Python :term:`module` which can contain submodules or recursively, - subpackages. Technically, a package is a Python module with an + subpackages. Technically, a package is a Python module with a ``__path__`` attribute. See also :term:`regular package` and :term:`namespace package`.