summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2022-10-29 22:50:31 (GMT)
committerGitHub <noreply@github.com>2022-10-29 22:50:31 (GMT)
commita55bd6f884daeed28c3db1a117fdfc30c5143b2d (patch)
tree5852c92355a8187a51c9b1c48f0e629f395d505e
parentd038307b109767f3ccb69d6a7bcd4ba8ac0cecf7 (diff)
downloadcpython-a55bd6f884daeed28c3db1a117fdfc30c5143b2d.zip
cpython-a55bd6f884daeed28c3db1a117fdfc30c5143b2d.tar.gz
cpython-a55bd6f884daeed28c3db1a117fdfc30c5143b2d.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.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`.