]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
gh-91541: Fix error in example in modules tutorial (GH-91634)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Sun, 17 Apr 2022 21:30:57 +0000 (14:30 -0700)
committerGitHub <noreply@github.com>
Sun, 17 Apr 2022 21:30:57 +0000 (14:30 -0700)
(cherry picked from commit efbc668183400597070356a2df2fbab114a53cb3)

Co-authored-by: 180909 <734461790@qq.com>
Doc/tutorial/modules.rst

index f1d4957e37eb11a503c8d5e2e15ab5720ff63c05..47c1f1877d69671732779bc5d36afa745b6d96c0 100644 (file)
@@ -504,7 +504,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