Fix a wrong indentation for sublists.
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 @@
.. 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