]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
gh-91541: Fix error in example in modules tutorial (#91634)
author180909 <734461790@qq.com>
Sun, 17 Apr 2022 21:17:04 +0000 (05:17 +0800)
committerGitHub <noreply@github.com>
Sun, 17 Apr 2022 21:17:04 +0000 (14:17 -0700)
Doc/tutorial/modules.rst

index 0d1fadadf83a01acd93ec8c619bfaeba4afe4cb9..524d3c32417b920ac64b785156ae85d7acca9e2e 100644 (file)
@@ -508,7 +508,7 @@ code::
    __all__ = ["echo", "surround", "reverse"]
 
 This would mean that ``from sound.effects import *`` would import the three
-named submodules of the :mod:`sound` package.
+named submodules of the :mod:`sound.effects` package.
 
 If ``__all__`` is not defined, the statement ``from sound.effects import *``
 does *not* import all submodules from the package :mod:`sound.effects` into the