[Python-checkins] cpython (3.4): Fix typo reported by Jesse W on docs@

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


http://hg.python.org/cpython/rev/b7055979a851
changeset:   91217:b7055979a851
branch:      3.4
parent:      91214:36ef32003a81
user:        Zachary Ware <zachary.ware at gmail.com>
date:        Mon Jun 16 11:13:01 2014 -0500
summary:
  Fix typo reported by Jesse W on docs@

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