[Python-checkins] cpython (merge 3.4 -> default): Merge typo fix from 3.4

zach.ware python-checkins at python.org
Mon Jun 16 18:15:25 CEST 2014


http://hg.python.org/cpython/rev/34881ee3eec5
changeset:   91218:34881ee3eec5
parent:      91215:0ce4ce919ccd
parent:      91217:b7055979a851
user:        Zachary Ware <zachary.ware at gmail.com>
date:        Mon Jun 16 11:14:47 2014 -0500
summary:
  Merge typo fix from 3.4

files:
  Doc/howto/functional.rst |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Doc/howto/functional.rst b/Doc/howto/functional.rst
--- a/Doc/howto/functional.rst
+++ b/Doc/howto/functional.rst
@@ -583,7 +583,7 @@
 
 Because ``yield`` will often be returning ``None``, you should always check for
 this case.  Don't just use its value in expressions unless you're sure that the
-:meth:`~generator.send` method will be the only method used resume your
+:meth:`~generator.send` method will be the only method used to resume your
 generator function.
 
 In addition to :meth:`~generator.send`, there are two other methods on

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list