summaryrefslogtreecommitdiffstats
path: root/Doc/reference/simple_stmts.rst
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2007-09-07 14:14:40 (GMT)
committerGeorg Brandl <georg@python.org>2007-09-07 14:14:40 (GMT)
commit8360d5de7e7497c9f4f83c7d43d0b20bf4316d88 (patch)
treef36853093677659e0de23360a9b2069e1a710689 /Doc/reference/simple_stmts.rst
parent2e638c3a8a0114f6c04022019e78393331d5baaa (diff)
downloadcpython-8360d5de7e7497c9f4f83c7d43d0b20bf4316d88.zip
cpython-8360d5de7e7497c9f4f83c7d43d0b20bf4316d88.tar.gz
cpython-8360d5de7e7497c9f4f83c7d43d0b20bf4316d88.tar.bz2
Fix a wrong indentation for sublists.
Diffstat (limited to 'Doc/reference/simple_stmts.rst')
-rw-r--r--Doc/reference/simple_stmts.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/reference/simple_stmts.rst b/Doc/reference/simple_stmts.rst
index 6c62133..7b55534 100644
--- a/Doc/reference/simple_stmts.rst
+++ b/Doc/reference/simple_stmts.rst
@@ -173,10 +173,10 @@ Assignment of an object to a single target is recursively defined as follows.
.. index:: statement: global
-* If the name does not occur in a :keyword:`global` statement in the current
+ * If the name does not occur in a :keyword:`global` statement in the current
code block: the name is bound to the object in the current local namespace.
-* Otherwise: the name is bound to the object in the current global namespace.
+ * Otherwise: the name is bound to the object in the current global namespace.
.. index:: single: destructor