From 2c2522f5c1726572d6cc6212e2e53f1c4148767b Mon Sep 17 00:00:00 2001 From: ab Date: Sun, 30 Oct 2022 00:31:18 +0200 Subject: [PATCH] Nit: fix typo in package definition --- Doc/glossary.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/glossary.rst b/Doc/glossary.rst index 59f9426f603172..3d74d550dc345a 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`.