diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2022-10-29 22:52:05 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-29 22:52:05 (GMT) |
commit | 23545fb277fdc8acc5574e81111cb05fca7a4d50 (patch) | |
tree | 8576e510ba001c1133b4cee290cfd82f406e0f83 | |
parent | c76e70a409c8e744b5a306c8b2655173f8c69b7c (diff) | |
download | cpython-23545fb277fdc8acc5574e81111cb05fca7a4d50.zip cpython-23545fb277fdc8acc5574e81111cb05fca7a4d50.tar.gz cpython-23545fb277fdc8acc5574e81111cb05fca7a4d50.tar.bz2 |
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 <abousselmi@users.noreply.github.com>
-rw-r--r-- | Doc/glossary.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/glossary.rst b/Doc/glossary.rst index c4231e7..6e519df 100644 --- a/Doc/glossary.rst +++ b/Doc/glossary.rst @@ -893,7 +893,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`. |