From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Sat, 29 Oct 2022 22:50:31 +0000 (-0700) Subject: glossary.rst: Fix typo in package definition (GH-98865) X-Git-Tag: v3.11.1~177 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a55bd6f884daeed28c3db1a117fdfc30c5143b2d;p=thirdparty%2FPython%2Fcpython.git glossary.rst: Fix typo in package definition (GH-98865) 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 (cherry picked from commit fc94d55ff453a3101e4c00a394d4e38ae2fece13) Co-authored-by: ab --- diff --git a/Doc/glossary.rst b/Doc/glossary.rst index 59f9426f6031..3d74d550dc34 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`.