Skip to content

Commit efbc668

Browse files
authored
gh-91541: Fix error in example in modules tutorial (#91634)
1 parent 017f07a commit efbc668

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Doc/tutorial/modules.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -508,7 +508,7 @@ code::
508508
__all__ = ["echo", "surround", "reverse"]
509509

510510
This would mean that ``from sound.effects import *`` would import the three
511-
named submodules of the :mod:`sound` package.
511+
named submodules of the :mod:`sound.effects` package.
512512

513513
If ``__all__`` is not defined, the statement ``from sound.effects import *``
514514
does *not* import all submodules from the package :mod:`sound.effects` into the

0 commit comments

Comments
 (0)