From: Zachary Ware Date: Mon, 16 Jun 2014 16:13:01 +0000 (-0500) Subject: Fix typo reported by Jesse W on docs@ X-Git-Tag: v3.4.2rc1~378 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=0aecc18bab0495529582acdbb3271c148b329aa8;p=thirdparty%2FPython%2Fcpython.git Fix typo reported by Jesse W on docs@ --- diff --git a/Doc/howto/functional.rst b/Doc/howto/functional.rst index 97c90c7c0b88..1969b3210857 100644 --- a/Doc/howto/functional.rst +++ b/Doc/howto/functional.rst @@ -583,7 +583,7 @@ And here's an example of changing the counter: 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