summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2009-12-20 14:28:05 (GMT)
committerGeorg Brandl <georg@python.org>2009-12-20 14:28:05 (GMT)
commit819a8fa0f694bea3099f704d01ba51c5350c71b1 (patch)
treee00a0312b9d7a5dafd3f9330b4b37197bc33f245 /Doc
parent0cedb4bffa8e088280941ac4415a25a9abd7493f (diff)
downloadcpython-819a8fa0f694bea3099f704d01ba51c5350c71b1.zip
cpython-819a8fa0f694bea3099f704d01ba51c5350c71b1.tar.gz
cpython-819a8fa0f694bea3099f704d01ba51c5350c71b1.tar.bz2
Small indentation fix.
Diffstat (limited to 'Doc')
-rw-r--r--Doc/faq/design.rst2
1 files changed, 1 insertions, 1 deletions
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 @@ 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.