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: v2.7.8~37^2~10 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=487a143c580c9b12a936ed8cd31d6979c9d411e1;p=python Fix typo reported by Jesse W on docs@ --- diff --git a/Doc/howto/functional.rst b/Doc/howto/functional.rst index 0ff9eeef02..c6d6a56a7e 100644 --- a/Doc/howto/functional.rst +++ b/Doc/howto/functional.rst @@ -587,7 +587,8 @@ 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 -``send()`` method will be the only method used resume your generator function. +``send()`` method will be the only method used to resume your generator +function. In addition to ``send()``, there are two other new methods on generators: