]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Clarify amount of dots between package and subpackage (GH-17092)
authorShu <23287722+susan-shu-c@users.noreply.github.com>
Fri, 8 Nov 2019 20:26:35 +0000 (15:26 -0500)
committerCarol Willing <carolcode@willingconsulting.com>
Fri, 8 Nov 2019 20:26:35 +0000 (12:26 -0800)
Doc/reference/import.rst

index 0228bfb7e984c56db35f58b9300fe289431bbc3c..5cce8ceaa3cb689dd4dbdd2e450a678a89fe595a 100644 (file)
@@ -83,7 +83,7 @@ module.  Specifically, any module that contains a ``__path__`` attribute is
 considered a package.
 
 All modules have a name.  Subpackage names are separated from their parent
-package name by dots, akin to Python's standard attribute access syntax.  Thus
+package name by a dot, akin to Python's standard attribute access syntax.  Thus
 you might have a module called :mod:`sys` and a package called :mod:`email`,
 which in turn has a subpackage called :mod:`email.mime` and a module within
 that subpackage called :mod:`email.mime.text`.