summaryrefslogtreecommitdiffstats
path: root/Doc/reference
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2010-09-21 14:48:28 (GMT)
committerGeorg Brandl <georg@python.org>2010-09-21 14:48:28 (GMT)
commit6faee4e2ce8ee107bfe92bac74afa2c30ed4aebd (patch)
tree2493738443750be19a421393c8b20fde0f1a195e /Doc/reference
parentaf38dc5b0c6f4a0308555199a07fcaba8f27e94d (diff)
downloadcpython-6faee4e2ce8ee107bfe92bac74afa2c30ed4aebd.zip
cpython-6faee4e2ce8ee107bfe92bac74afa2c30ed4aebd.tar.gz
cpython-6faee4e2ce8ee107bfe92bac74afa2c30ed4aebd.tar.bz2
#9911: doc copyedits.
Diffstat (limited to 'Doc/reference')
-rw-r--r--Doc/reference/expressions.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/reference/expressions.rst b/Doc/reference/expressions.rst
index 32df042..f6a6f80 100644
--- a/Doc/reference/expressions.rst
+++ b/Doc/reference/expressions.rst
@@ -344,7 +344,7 @@ All of this makes generator functions quite similar to coroutines; they yield
multiple times, they have more than one entry point and their execution can be
suspended. The only difference is that a generator function cannot control
where should the execution continue after it yields; the control is always
-transfered to the generator's caller.
+transferred to the generator's caller.
The :keyword:`yield` statement is allowed in the :keyword:`try` clause of a
:keyword:`try` ... :keyword:`finally` construct. If the generator is not