Small indentation fix.
diff --git a/Doc/faq/design.rst b/Doc/faq/design.rst
index 9507648..5be6add 100644
--- a/Doc/faq/design.rst
+++ b/Doc/faq/design.rst
@@ -825,7 +825,7 @@
 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.