diff options
author | Georg Brandl <georg@python.org> | 2013-10-06 17:21:14 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2013-10-06 17:21:14 (GMT) |
commit | 3456d4746d398d7fb96b689f2cddf95f99279bf5 (patch) | |
tree | d0c109068abe5394edc8ac9a1ba80c24d8dd8eb2 /Doc/tutorial | |
parent | bab7850c8edf8a030a76cd1615aee914bafbbc5a (diff) | |
download | cpython-3456d4746d398d7fb96b689f2cddf95f99279bf5.zip cpython-3456d4746d398d7fb96b689f2cddf95f99279bf5.tar.gz cpython-3456d4746d398d7fb96b689f2cddf95f99279bf5.tar.bz2 |
Fix typo in example file name. Found by John Bokma on docs@.
Diffstat (limited to 'Doc/tutorial')
-rw-r--r-- | Doc/tutorial/modules.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/tutorial/modules.rst b/Doc/tutorial/modules.rst index 1e792d1..f5b8114 100644 --- a/Doc/tutorial/modules.rst +++ b/Doc/tutorial/modules.rst @@ -467,7 +467,7 @@ list of module names that should be imported when ``from package import *`` is encountered. It is up to the package author to keep this list up-to-date when a new version of the package is released. Package authors may also decide not to support it, if they don't see a use for importing \* from their package. For -example, the file :file:`sounds/effects/__init__.py` could contain the following +example, the file :file:`sound/effects/__init__.py` could contain the following code:: __all__ = ["echo", "surround", "reverse"] |