summaryrefslogtreecommitdiffstats
path: root/Doc/reference
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2009-09-16 01:18:27 (GMT)
committerEzio Melotti <ezio.melotti@gmail.com>2009-09-16 01:18:27 (GMT)
commit4bbfa2a099c7fbf2a1f294aafddab27e0f17820e (patch)
tree0f28f5fb630a432f87817e7063cfab718cf2eb30 /Doc/reference
parent6e9b1df499ef87bf8b21787219fbccee8c0075d7 (diff)
downloadcpython-4bbfa2a099c7fbf2a1f294aafddab27e0f17820e.zip
cpython-4bbfa2a099c7fbf2a1f294aafddab27e0f17820e.tar.gz
cpython-4bbfa2a099c7fbf2a1f294aafddab27e0f17820e.tar.bz2
#6910 - for->or typo
Diffstat (limited to 'Doc/reference')
-rw-r--r--Doc/reference/simple_stmts.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/reference/simple_stmts.rst b/Doc/reference/simple_stmts.rst
index 7387da7..46eea20 100644
--- a/Doc/reference/simple_stmts.rst
+++ b/Doc/reference/simple_stmts.rst
@@ -798,7 +798,7 @@ modules which were imported and used within the module).
The :keyword:`from` form with ``*`` may only occur in a module scope. The wild
card form of import --- ``import *`` --- is only allowed at the module level.
-Attempting to use it in class for function definitions will raise a
+Attempting to use it in class or function definitions will raise a
:exc:`SyntaxError`.
.. index::