]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
glossary.rst: Fix typo in package definition (GH-98865)
authorab <abousselmi@users.noreply.github.com>
Sat, 29 Oct 2022 22:42:59 +0000 (00:42 +0200)
committerGitHub <noreply@github.com>
Sat, 29 Oct 2022 22:42:59 +0000 (15:42 -0700)
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

index 59f9426f603172c9bab2373e262cdbe7c3362122..3d74d550dc345a57eb63d8be16ad26de1c930367 100644 (file)
@@ -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`.