summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorab <abousselmi@users.noreply.github.com>2022-10-29 22:42:59 (GMT)
committerGitHub <noreply@github.com>2022-10-29 22:42:59 (GMT)
commitfc94d55ff453a3101e4c00a394d4e38ae2fece13 (patch)
treeb7ca808291bb78ede567db1c71dfcc13bb08f4b4 /Doc
parentbfecff5f73741f095bb9ec2329467bf16cbbdf5a (diff)
downloadcpython-fc94d55ff453a3101e4c00a394d4e38ae2fece13.zip
cpython-fc94d55ff453a3101e4c00a394d4e38ae2fece13.tar.gz
cpython-fc94d55ff453a3101e4c00a394d4e38ae2fece13.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
Diffstat (limited to 'Doc')
-rw-r--r--Doc/glossary.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/glossary.rst b/Doc/glossary.rst
index 59f9426..3d74d55 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`.