]> granicus.if.org Git - python/commitdiff
Small indentation fix.
authorGeorg Brandl <georg@python.org>
Sun, 20 Dec 2009 14:28:05 +0000 (14:28 +0000)
committerGeorg Brandl <georg@python.org>
Sun, 20 Dec 2009 14:28:05 +0000 (14:28 +0000)
Doc/faq/design.rst

index 9507648fe70cbcc44a2d2cd384624473662868c5..5be6add9d88b005b58d2a15ba46881c89c15e04a 100644 (file)
@@ -825,7 +825,7 @@ on the entrance and exit from the block.  Some language have a construct that
 looks like this::
 
    with obj:
-       a = 1    # equivalent to obj.a = 1
+       a = 1               # equivalent to obj.a = 1
        total = total + 1   # obj.total = obj.total + 1
 
 In Python, such a construct would be ambiguous.