]> granicus.if.org Git - python/commitdiff
Fix a wrong indentation for sublists.
authorGeorg Brandl <georg@python.org>
Fri, 7 Sep 2007 14:14:40 +0000 (14:14 +0000)
committerGeorg Brandl <georg@python.org>
Fri, 7 Sep 2007 14:14:40 +0000 (14:14 +0000)
Doc/reference/simple_stmts.rst

index 6c62133ee7f1454d8815f6a9d37ce1f47588d3a5..7b555346433673a4b7d868a225b1463c48a3835d 100644 (file)
@@ -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