summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
Diffstat (limited to 'Doc')
-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